-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1015 Bytes
/
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
{
"name": "compress-create-react-app",
"version": "1.4.5",
"description": "An NPM package for adding post build compression to a create-react-app builds",
"main": "index.js",
"scripts": {
"test": "jest",
"prepare": "husky install",
"prettier": "prettier -c ./src/*.js"
},
"bin": {
"compress-create-react-app": "index.js",
"compress-cra": "index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jnsjknn/compress-create-react-app.git"
},
"keywords": [
"create-react-app",
"compression",
"brotli",
"gzip"
],
"author": "Joonas Jokinen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jnsjknn/compress-create-react-app/issues"
},
"homepage": "https://github.com/jnsjknn/compress-create-react-app#readme",
"devDependencies": {
"husky": "^7.0.4",
"jest": "^27.5.1",
"prettier": "^2.7.1"
},
"dependencies": {
"app-root-path": "^3.1.0",
"yargs": "^17.5.1"
}
}