-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
60 lines (60 loc) · 1.46 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "dva-ast",
"version": "0.3.5",
"description": "dva static analysis based on javascript ast.",
"files": [
"boilerplates",
"lib",
"src",
"index.js"
],
"scripts": {
"build": "babel -d lib/ src/",
"dev": "npm run build -- -w",
"test": "NODE_ENV=test nyc mocha --no-timeouts ./test/*-test.js ./test/**/*-test.js",
"debug": "mocha --require babel-register --no-timeouts ./test/*-test.js ./test/**/*-test.js",
"report": "nyc report --reporter=html",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"prepublish": "npm run build"
},
"dependencies": {
"fs-extra": "^0.30.0",
"glob": "^7.1.0",
"handlebars": "^4.0.5",
"jscodeshift": "^0.3.32",
"lodash.flatten": "^4.4.0",
"lodash.once": "^4.1.1",
"lodash.uniq": "^4.5.0",
"relative": "^3.0.2"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-node": "^5.1.1",
"babel-register": "^6.14.0",
"expect": "^1.20.2",
"mocha": "^3.0.2",
"nyc": "^8.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dvajs/dva-ast"
},
"homepage": "https://github.com/dvajs/dva-ast",
"keywords": [
"dva",
"ast"
],
"author": "Chris Fan <chris.fan.dev@gmail.com>",
"nyc": {
"include": [
"src/**/*.js"
],
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
},
"license": "MIT"
}