-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 1.9 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "dragon-pond",
"version": "1.0.0",
"description": "dragon compiler collection",
"author": "Shuyun FED Team",
"scripts": {
"start": "cross-env NODE_ENV=test ava -w",
"build": "cross-env NODE_ENV=production babel src --out-dir lib --ignore **/__tests__",
"test": "cross-env NODE_ENV=test nyc ava -v",
"report": "nyc report --reporter=html",
"codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "eslint ./src && nyc --check-coverage --lines 80 --functions 80 --branches 80 npm test"
},
"dependencies": {
"babel-generator": "^6.24.1",
"babel-template": "^6.24.1",
"babel-traverse": "^6.24.1",
"babel-types": "^6.24.1",
"babylon": "^6.17.0",
"humps": "^2.0.0",
"js-beautify": "^1.6.12",
"lodash": "^4.17.4",
"vue-template-compiler": "^2.3.3"
},
"devDependencies": {
"ava": "^0.19.1",
"babel-cli": "^6.24.1",
"babel-plugin-istanbul": "^4.1.3",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.24.1",
"codecov": "^2.2.0",
"cross-env": "^4.0.0",
"eslint": "^3.19.0",
"eslint-config-shuyun": "^2.1.0",
"husky": "^0.13.3",
"nyc": "^10.3.2"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"eslintConfig": {
"extends": "shuyun"
},
"ava": {
"require": [
"babel-register"
],
"source": [
"src/**/*.js"
],
"babel": {
"babelrc": true,
"env": {
"test": {
"sourceMaps": "inline"
}
}
}
},
"nyc": {
"include": [
"src/**/*.js"
],
"exclude": [
"**/node_modules/**",
"examples/**",
"**/__tests__/**"
],
"all": true,
"require": [
"babel-register"
],
"sourceMap": false,
"instrument": false
}
}