-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 900 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
28
29
30
31
32
33
{
"name": "@motet-a/validate",
"version": "0.1.1",
"main": "dist/index.js",
"files": [
"dist"
],
"license": "BSD-3-Clause",
"engines": {
"node": ">=6"
},
"repository": "github:motet-a/validate",
"scripts": {
"build": "babel src/ --out-dir dist/ --ignore '*.test.js'",
"pretest": "npm run build",
"test:src": "nyc mocha --require babel-core/register src/index.test.js",
"test": "npm run test:src && npm run test:examples",
"test:examples": "node examples/0.js",
"prepare": "npm run build",
"report-coverage": "nyc report --reporter=text-lcov | coveralls"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^4.0.1",
"nyc": "^11.4.0"
}
}