-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "shall-not-pass",
"version": "0.0.1",
"main": "index.js",
"files": [
"**/*.js"
],
"repository": "[email protected]:HuehueJS/shall-not-pass.git",
"author": "HuehueJs",
"license": "BSD",
"private": false,
"standard": {
"ignore": [
"coverage/**",
"node_modules/**",
"src/**"
]
},
"scripts": {
"build": "babel ./src -d ./dist",
"build-dev": "babel ./src -d ./dist --source-maps inline",
"predeploy": "rm -rf dist && mkdir -p dist && npm run build && cp ./package.json ./dist/",
"deploy": "cd ./dist && npm publish",
"postdeploy": "cd ..",
"test": "nyc --reporter=html --reporter=text mocha --recursive --compilers js:babel-core/register",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2018": "^1.0.0",
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"mocha": "^5.1.1",
"nyc": "^11.7.1"
}
}