forked from gios/gzipper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.9 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
{
"name": "gzipper",
"version": "4.4.0",
"description": "CLI for compressing files.",
"main": "index.js",
"scripts": {
"test": "cross-env NODE_ENV=testing nyc --check-coverage --reporter='text-summary' mocha",
"coverage": "cross-env NODE_ENV=testing nyc --reporter='html' mocha",
"codecov": "cross-env NODE_ENV=testing nyc report --reporter=text-lcov > coverage.lcov && codecov",
"prettier": "prettier --write \"**/*.{ts,js,css,html}\" \"!test/resources/folder_to_compress/**\"",
"eslint": "eslint \"**/*.ts\"",
"build": "rimraf dist && tsc && copyfiles -f package.json README.md LICENSE CHANGELOG.md dist/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gios/gzipper.git"
},
"bin": "./bin/index.js",
"keywords": [
"compress",
"compression",
"brotli",
"deflate",
"gzip",
"zlib",
"CLI",
"tool",
"angular"
],
"author": "Gios",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/gios/gzipper/issues"
},
"homepage": "https://github.com/gios/gzipper#readme",
"devDependencies": {
"@types/deep-equal": "^1.0.1",
"@types/mocha": "^7.0.2",
"@types/node": "^14.14.0",
"@types/semver": "^7.3.4",
"@types/sinon": "^9.0.8",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"codecov": "^3.8.0",
"copyfiles": "^2.4.0",
"cross-env": "^7.0.2",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^8.2.0",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"semver": "^7.3.2",
"sinon": "^9.2.0",
"source-map-support": "^0.5.19",
"ts-node": "^9.0.0",
"typescript": "^3.9.7"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"commander": "^6.2.0",
"deep-equal": "^2.0.4",
"uuid": "^8.3.1"
}
}