This repository has been archived by the owner on Jan 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 2.02 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
{
"name": "userscripts",
"private": true,
"description": "My userscripts and libraries",
"homepage": "https://github.com/iFelix18/Userscripts#readme",
"bugs": {
"url": "https://github.com/iFelix18/Userscripts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iFelix18/Userscripts.git"
},
"license": "MIT",
"author": {
"name": "Davide",
"email": "iFelix18@protonmail.com",
"url": "https://twitter.com/iFeIix18"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn lint && yarn lint:md && lerna run build",
"lint": "eslint . --ext .json,.js",
"lint:md": "markdownlint-cli2 **/*.md !**/node_modules/** !LICENSE.md",
"server": "http-server -s -c-1",
"start": "concurrently \"gulp default\" \"yarn server\" \"yarn watch\"",
"update": "updates -u & yarn install",
"watch": "lerna run watch"
},
"devDependencies": {
"@babel/core": "^7.17.7",
"@babel/preset-env": "^7.16.11",
"@babel/register": "^7.17.7",
"concurrently": "^7.2.1",
"cross-env": "^7.0.3",
"eslint": "^8.11.0",
"eslint-config-greasemonkey": "^1.0.1",
"eslint-config-standard": "^17.0.0-1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsdoc": "^39.2.9",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-n": "^15.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-unicorn": "^43.0.2",
"eslint-plugin-userscripts": "^0.2.1",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-flatmap": "^1.0.2",
"gulp-html-minifier-terser": "^6.0.1",
"gulp-replace": "^1.1.3",
"http-server": "^14.1.0",
"lerna": "^5.0.0",
"lerna-wizard": "^1.1.1",
"markdownlint-cli2": "^0.4.0",
"rollup": "^2.70.1",
"rollup-plugin-eslint-bundle": "^7.0.0",
"rollup-plugin-shift-header": "https://github.com/roddolf/rollup-plugin-shift-header",
"rollup-plugin-terser": "^7.0.2",
"updates": "^13.0.4",
"userscript-meta": "^1.0.1",
"yarn": "^1.22.17"
}
}