-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 983 Bytes
/
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
{
"private": true,
"main": "lib/index.js",
"devDependencies": {
"babel-core": "^6.5.1",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-object-rest-spread": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-register": "^6.5.2",
"chai": "^3.5.0",
"eslint": "^3.3.1",
"eslint-config-standard": "5.3.5",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.0",
"isparta": "^4.0.0",
"mocha": "^3.0.2",
"rimraf": "^2.5.2"
},
"scripts": {
"clean": "./node_modules/.bin/rimraf lib",
"compile": "./node_modules/.bin/babel --presets es2015 -d lib/ src/",
"lint": "./node_modules/.bin/eslint src test",
"test": "./node_modules/.bin/mocha --compilers js:babel-register --recursive",
"test:cov": "./node_modules/.bin/babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha -- --recursive",
"prepublish": "npm run lint && npm run test && npm run clean && npm run compile"
}
}