-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.32 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
{
"name": "zip-parse",
"version": "1.0.0",
"description": "从zip中读取文件,支持普通require,fs等操作及各种构建工具",
"main": "bin/zip-parse",
"scripts": {
"start": "npm run build && cd example/simple && npm install && (cd node_modules && zip -r ../mods.zip *) && rm -r node_modules && NODE_PATH=./mods.zip node index.js",
"build": "rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sokis/zip-parse.git"
},
"devDependencies": {
"ava": "^0.21.0",
"babel-core": "^6.25.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"coveralls": "^2.13.1",
"nyc": "^11.1.0",
"rimraf": "^2.6.1",
"rollup": "^0.45.2",
"rollup-plugin-babel": "^3.0.1",
"rollup-plugin-commonjs": "^8.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-uglify": "^2.0.1"
},
"keywords": [
"zip",
"parse",
"webpack",
"zipe",
"node",
"zip"
],
"author": "ZengYi <zengyi.zal@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sokis/zip-parse/issues"
},
"homepage": "https://github.com/sokis/zip-parse#readme",
"dependencies": {
"babel-plugin-closure-elimination": "^1.1.16"
}
}