-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 2.48 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "browserfs-zipfs-extras",
"version": "1.0.1",
"description": "Adds EXPLODE, UNSHRINK, and UNREDUCE support to BrowserFS's ZipFS",
"license": "GPL-2.0",
"main": "dist/browserfs-zipfs-extras-node.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jvilk/browserfs-zipfs-extras.git"
},
"scripts": {
"build:tsc": "tsc -p src",
"build:sweet": "sjs -c -m ./macros/macros.js ./build/browserfs-zipfs-extras.js -o ./dist/browserfs-zipfs-extras.js",
"build:node:sweet": "sjs -c -m ./macros/macros.js ./build/browserfs-zipfs-extras-node.js -o ./dist/browserfs-zipfs-extras-node.js",
"build:fix-sweet-maps": "node scripts/fix-sweet-maps.js",
"build:merge-source-maps": "merge-source-maps --inline-sources dist/browserfs-zipfs-extras.js dist/browserfs-zipfs-extras-node.js",
"build:mkdir": "mkdirp dist",
"build:rollup": "rollup -c rollup.config.js",
"build:node:rollup": "rollup -c rollup.node.config.js",
"build:test": "tsc -p test/src",
"prepublish": "npm-run-all --serial build:tsc --parallel build:rollup build:node:rollup --serial build:mkdir --parallel build:sweet build:node:sweet --serial build:fix-sweet-maps build:merge-source-maps",
"karma": "karma start karma.config.js",
"test": "npm-run-all --parallel prepublish build:test --serial karma"
},
"keywords": [
"decompression",
"unshrink",
"reduce",
"unreduce",
"implode",
"explode",
"zip",
"unzip"
],
"author": "John Vilk ([email protected])",
"bugs": {
"url": "https://github.com/jvilk/browserfs-zipfs-extras/issues"
},
"homepage": "https://github.com/jvilk/browserfs-zipfs-extras#readme",
"dependencies": {
"browserfs": ">=1.1"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/dropboxjs": "0.0.29",
"@types/filesystem": "0.0.28",
"@types/mocha": "^2.2.32",
"@types/node": "6.0.33",
"chai": "^3.5.0",
"detect-browsers": "^2.0.0",
"js-crc": "^0.1.0",
"karma": "^1.3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.2.0",
"karma-opera-launcher": "^1.0.0",
"karma-safari-launcher": "^1.0.0",
"merge-source-maps": "^0.5.0",
"mkdirp": "^0.5.1",
"mocha": "^3.1.2",
"npm-run-all": "^3.1.1",
"rollup": "^0.36.3",
"rollup-plugin-buble": "^0.14.0",
"rollup-plugin-sourcemaps": "^0.4.1",
"sweet.js": "^0.7",
"typescript": "^2.0.6"
}
}