-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.19 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
{
"name": "think-resource-spa",
"description": "",
"version": "1.0.4",
"author": {"name": "Ray Chen<[email protected]>"},
"scripts": {
"test": "mocha --reporter spec --timeout 5000 --recursive test/",
"test-cov": "istanbul cover ./node_modules/mocha/bin/_mocha -- -t 5000 --recursive -R spec test/",
"compile": "babel src/ --out-dir lib/",
"watch-compile": "npm run compile -- --watch",
"prepublish": "npm run compile",
"eslint": "eslint src/"
},
"contributors": [],
"main": "lib/index.js",
"dependencies": {
"babel-runtime": "6.x.x"
},
"devDependencies": {
"mocha": "1.20.1",
"istanbul": "0.4.0",
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-1": "^6.16.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-core": "^6.20.0",
"thinkjs": "2.x.x",
"eslint": "1.8.0",
"babel-eslint": "4.1.3"
},
"keywords": [
"thinkjs spa"
],
"repository": {
"type": "git",
"url": "https://github.com/chenyuncai/think-resource-spa-check"
},
"engines": {
"node": ">=0.12.0"
},
"license": "MIT",
"readmeFilename": "README.md",
"bugs": {
"url": "<Github URL>/issues"
}
}