-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.71 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
{
"name": "gulp-brotli",
"version": "3.0.0",
"description": "A gulp plugin for file compression using the brotli compression included in node.js's zlib native module, without any native or WASM extraneous libraries.",
"main": "index.js",
"scripts": {
"check-workspace": "git diff --exit-code >/dev/null && git diff --cached --exit-code >/dev/null",
"compile": "tsc --project .",
"build": "rm -rf dist/ && npm test && npm run compile && cp package.json README.md LICENSE dist/",
"test": "tslint --project . && jest",
"prepublishOnly": "echo 'Run \\'npm run publish-package\\' instead' && exit 1",
"publish-package": "npm run check-workspace && git push && git push --tags && npm run build && npm publish --access=public --ignore-scripts dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seznam/gulp-brotli.git"
},
"keywords": [
"brotli",
"gulp",
"native",
"zlib"
],
"author": "Martin Jurča <[email protected]>",
"contributors": [
{
"name": "Nicolas Stepien",
"email": "[email protected]",
"url": "https://github.com/MayhemYDG"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/seznam/gulp-brotli/issues"
},
"homepage": "https://github.com/seznam/gulp-brotli#readme",
"engines": {
"node": ">=10.17.0"
},
"devDependencies": {
"@types/jest": "^24.0.21",
"@types/node": "^12.12.3",
"@types/through2": "^2.0.34",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"typescript": "^3.6.4"
},
"dependencies": {
"plugin-error": "^2.0.1",
"through2": "^4.0.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}