1
Fork 0
do-not-zip/package.json

43 lines
1.1 KiB
JSON
Raw Normal View History

2018-04-19 21:07:21 +00:00
{
"name": "do-not-zip",
2018-11-07 12:00:47 +00:00
"version": "1.0.0",
2018-04-19 21:07:21 +00:00
"description": "Do not zip. Just store.",
"keywords": [
"browser",
"zip",
"archive"
],
2018-04-20 02:38:19 +00:00
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
2018-04-19 21:07:21 +00:00
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/Conduitry/do-not-zip.git"
},
"author": "Conduitry",
"license": "MIT",
"bugs": {
"url": "https://github.com/Conduitry/do-not-zip/issues"
},
2018-09-25 21:41:32 +00:00
"homepage": "https://conduitry.io/do-not-zip",
2018-04-19 21:07:21 +00:00
"devDependencies": {
2018-11-07 11:27:13 +00:00
"browserify": "16.2.3",
"jszip": "3.1.5",
"rollup": "*",
2018-11-07 11:27:13 +00:00
"rollup-plugin-commonjs": "9.2.0",
"rollup-plugin-node-resolve": "3.4.0",
"tap-colorize": "1.2.0",
"tape-run": "4.0.0",
"zora": "2.0.1"
2018-04-19 21:07:21 +00:00
},
"scripts": {
"build": "rollup -c",
"build:jszip": "browserify -s jszip node_modules/jszip/lib/index.js > test/jszip.js",
"test:browser": "npm run build:jszip && rollup -c rollup.config.test.js | tape-run | tap-colorize",
"test:node": "node test/test.node.js | tap-colorize",
"test": "npm run build && npm run test:node && npm run test:browser"
2018-04-20 02:38:19 +00:00
}
2018-04-19 21:07:21 +00:00
}