-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.04 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.04 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "ops_generator",
"version": "0.0.1",
"description": "",
"main": "",
"directories": {
"test": "test"
},
"scripts": {
"test": "nyc ava && nyc report --reporter=html",
"test:watch": "ava --watch",
"build": "BABEL_ENV=production"
},
"devDependencies": {
"ava": "^0.17.0",
"chai": "^3.5.0",
"nyc": "^10.0.0",
"rewire": "^2.5.2",
"sinon": "^1.17.7"
},
"dependencies": {
"change-case": "^3.0.0",
"lodash": "^4.0.0",
"mustache": "^2.3.0",
"async": "^2.1.4"
},
"author": "Wei-Ting, Chou",
"license": "ISC",
"babel": {
"presets": [
"es2015"
],
"plugins": [
"transform-runtime"
],
"ignore": "test/*.js",
"env": {
"development": {
"sourceMaps": "inline"
}
}
},
"ava": {
"files": [
"test/*.js",
"!test/helper.js",
"!test/const.js"
],
"source": [
"lib/*.js"
],
"concurrency": 5,
"verbose": true,
"powerAssert": true,
"require": [
"babel-core/register"
]
}
}