-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
124 lines (124 loc) · 3.27 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "user-scripts",
"version": "1.0.0",
"description": "User scripts for Tampermonkey",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nikolay-borzov/user-scripts.git"
},
"keywords": [
"user.js",
"userscript"
],
"author": {
"name": "Nikolay Borzov",
"email": "[email protected]"
},
"private": true,
"type": "module",
"scripts": {
"build": "node build/build.js",
"watch": "node build/build.js --watch",
"ple:build": "npm run build -- -s=ple",
"ple:watch": "npm run watch -- -s=ple",
"jrdb:build": "npm run build -- -s=jrdb",
"jrdb:watch": "npm run watch -- -s=jrdb",
"pleng:build": "npm run build -- -s=pleng",
"pleng:watch": "npm run watch -- -s=pleng",
"iv:build": "npm run build -- -s=iv",
"iv:watch": "npm run watch -- -s=iv",
"test": "ava --node-arguments=\"--loader=esmock\"",
"test:coverage": "c8 --all npm test",
"fix": "eslint --fix **/*.js",
"update-browserslist-db": "npx browserslist@latest --update-db",
"prepare": "husky install"
},
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"singleQuote": true,
"semi": false
},
"ava": {
"verbose": true
},
"c8": {
"all": true,
"include": [
"common",
"image-viewer"
],
"exclude": [
"**/*.test.js",
"**/index.js"
],
"reporter": [
"text",
"lcov"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-case": [
2,
"always",
"sentence-case"
],
"subject-case": [
2,
"always",
"sentence-case"
]
}
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/eslint": "^8.21.1",
"@types/tampermonkey": "^4.0.10",
"@types/yargs": "^17.0.22",
"ava": "^5.2.0",
"blissfuljs": "^1.0.6",
"c8": "^7.13.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-prettier-standard": "^4.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-ava": "^14.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^40.0.0",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-unicorn": "^45.0.2",
"eslint-plugin-userscripts": "^0.2.11",
"esmock": "^2.1.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"postcss": "^8.4.21",
"postcss-assets": "^6.0.0",
"postcss-cssnext": "^3.1.0",
"postcss-custom-properties": "^13.1.4",
"postcss-import": "^15.1.0",
"postcss-inline-svg": "^6.0.0",
"prettier": "^2.8.4",
"prettier-config-standard": "^5.0.0",
"rollup": "^3.18.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-eslint-bundle": "^8.0.0",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-userscript-metablock": "^0.3.2",
"stylelint": "^15.2.0",
"stylelint-config-property-sort-order-smacss": "^9.1.0",
"stylelint-config-standard": "^30.0.1",
"stylelint-order": "^6.0.2",
"yargs": "^17.7.1"
}
}