-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1006 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
34
35
36
37
38
39
40
41
{
"name": "ivh-model",
"version": "0.8.1",
"description": "Models for JavaScript",
"main": "dist/index.js",
"files": [
"dist"
],
"directories": {
"test": "test"
},
"scripts": {
"bump": "npm run bump:pre && inv",
"bump:pre": "echo Hold it there ace. && npm test && npm run build",
"build": "babel lib -d dist",
"lint": "eslint lib test && npm run lint:free",
"lint:free": "echo Such style. Much class. Wow.",
"test": "npm run lint && istanbul cover node_modules/mocha/bin/_mocha -- -R spec",
"test:watch": "mocha -w"
},
"author": "",
"eslintConfig": {
"extends": "ivantage",
"env": {
"es6": true,
"node": true,
"mocha": true
}
},
"license": "UNLICENSED",
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-preset-es2015": "^6.22.0",
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-ivantage": "^0.2.0",
"in-version": "^0.3.0",
"istanbul": "^0.4.5",
"mocha": "^6.1.4"
}
}