-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.35 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.35 KB
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": "zlib.es",
"version": "0.6.0",
"description": "ECMAScript compliant lightweight zlib implementation",
"main": "dist/cjs/zlib.js",
"module": "dist/tsc/zlib.js",
"types": "dist/tsc/zlib.d.ts",
"scripts": {
"test": "mocha ./test/index.js",
"build": "npm run lint && npm run build:tsc && npm run build:rollup && npm run build:uglify:browser && npm run build:uglify:esm && npm run test",
"debug": "npm run build:tsc && npm run build:rollup && npm run test",
"build:tsc": "tsc",
"build:rollup": "rollup -c",
"build:uglify:browser": "uglifyjs dist/browser/zlib.js -o dist/browser/zlib.min.js -cm --comments --source-map",
"build:uglify:esm": "uglifyjs dist/esm/zlib.js -o dist/esm/zlib.min.js -cm --comments --source-map",
"lint": "tslint --fix './src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zprodev/zlib.es.git"
},
"author": "zprodev <zproject.develop@gmail.com> (https://github.com/zprodev)",
"license": "Zlib",
"bugs": {
"url": "https://github.com/zprodev/zlib.es/issues"
},
"files": [
"README.md",
"dist"
],
"homepage": "https://github.com/zprodev/zlib.es#readme",
"keywords": [
"zlib"
],
"devDependencies": {
"mocha": "^6.1.4",
"rollup": "^1.13.1",
"tslint": "^5.11.0",
"typescript": "^3.2.1",
"uglify-es": "^3.3.9"
}
}