-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.06 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
{
"name": "fis3-parser-webpack",
"description": "A parser for fis to compile webpack module.",
"repository": {
"type": "git",
"url": "https://github.com/zswang/fis3-parser-webpack.git"
},
"version": "0.1.0",
"main": "lib/index.js",
"license": "MIT",
"bugs": {
"url": "https://github.com/zswang/fis3-parser-webpack/issues"
},
"homepage": "https://github.com/zswang/fis3-parser-webpack",
"author": {
"name": "zswang",
"url": "http://weibo.com/zswang"
},
"dependencies": {
"webpack": "^3.4.1",
"memory-fs": "^0.3.0",
"proxy-fs": "^0.0.10",
"deasync": "^0.1.3"
},
"devDependencies": {
"jdists": "^1.3.12",
"mocha": "2.0.1",
"istanbul": "0.3.17",
"should": "4.1.0",
"jshint": "2.5.8"
},
"files": [
"index.js",
"lib"
],
"scripts": {
"_update_version": "node version.js",
"lint": "jshint src/*.js",
"test": "istanbul cover --hook-run-in-context node_modules/mocha/bin/_mocha -- -R spec",
"dist": "npm run _update_version && jdists src/index.js -o lib/index.js && npm test"
}
}