-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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": "jsziptools",
"version": "3.0.0-rc4",
"description": "It's a utility of zlib, gzip and zip format binary data.",
"main": "./jsziptools.min.js",
"types": "./index.d.ts",
"directories": {
"example": "examples",
"test": "test"
},
"scripts": {
"test": "testem",
"build:browser": "webpack --mode production",
"build:npm": "tsc -d --outDir dist-release",
"build:test": "webpack --mode production --config webpack.config.test.js",
"release": "npm run build:test && npm test -- ci && npm run build:browser && npm run build:npm"
},
"repository": {
"type": "git",
"url": "git://github.com/ukyo/jsziptools.git"
},
"keywords": ["zip", "gz", "zlib"],
"author": "Syu Kato",
"license": "MIT",
"bugs": {
"url": "https://github.com/ukyo/jsziptools/issues"
},
"devDependencies": {
"@types/chai": "^3.4.30",
"@types/mocha": "^2.2.29",
"license-info-webpack-plugin": "^1.0.0",
"testem": "^1.10.3",
"ts-loader": "^4.1.0",
"typescript": "^2.7.2",
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12"
},
"dependencies": {
"zlib-asm": "^1.0.7"
}
}