-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.28 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
{
"name": "random-mua",
"description": "Random Modern User-Agent.",
"author": "Yahtnif <[email protected]>",
"version": "0.5.0",
"main": "dist/index.js",
"repository": "yahtnif/random-mua",
"homepage": "https://github.com/yahtnif/random-mua",
"license": "Anti 996",
"keywords": [
"user-agent",
"useragent",
"browser",
"random"
],
"scripts": {
"build": "yarn decompress && rollup --c",
"decompress": "node src/decompress.js",
"pass": "yarn build && yarn test",
"test": "jest",
"version": "yarn pass"
},
"lint-staged": {
"{src|__tests__}/**/*.js": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn pass",
"pre-push": "yarn pass"
}
},
"prettier": {
"arrowParens": "always",
"semi": false,
"singleQuote": true
},
"engines": {
"node": ">=8"
},
"devDependencies": {
"husky": "^3.1.0",
"jest": "^24.9.0",
"lint-staged": "^9.5.0",
"prettier": "1.19.1",
"rollup": "^1.27.14",
"rollup-plugin-cleanup": "^3.1.1",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-filesize": "^6.2.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-terser": "^5.1.3"
},
"dependencies": {
"suni": "^1.1.0"
}
}