-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
30 lines (30 loc) · 1.04 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
{
"name": "zipinfo.js",
"version": "1.0.0",
"description": "A minimal JavaScript library for querying metadata of zip files.",
"main": "zipinfo.js",
"keywords": [
"zip"
],
"author": "Rob Wu <rob@robwu.nl> (https://robwu.nl)",
"license": "MIT",
"devDependencies": {
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"uglify-js2": "^2.1.11"
},
"scripts": {
"build-min": "npm run build-min-browser && npm run build-min-greasemonkey",
"build-min-browser": "uglifyjs zipinfo.js zipinfo_browser.js -m -c --comments /Copyright/ -o build/zipinfo_browser.min.js",
"build-min-greasemonkey": "uglifyjs zipinfo.js zipinfo_greasemonkey.js -m -c --comments /Copyright/ -o build/zipinfo_greasemonkey.min.js",
"test": "mocha ./test/test*.js --reporter spec",
"test-coverage": "istanbul cover ./node_modules/.bin/_mocha -- test/test-ZipInfo.js --reporter spec"
},
"repository": {
"type": "git",
"url": "https://github.com/Rob--W/zipinfo.js.git"
},
"bugs": {
"url": "https://github.com/Rob--W/zipinfo.js/issues"
}
}