forked from Mottie/GitHub-userscripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 780 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
{
"name": "github-userscripts",
"version": "1.0.299",
"description": "Userscripts to add functionality to GitHub",
"license": "MIT",
"repository": "Mottie/GitHub-userscripts",
"author": {
"name": "Rob Garrison",
"email": "[email protected]",
"url": "https://github.com/Mottie"
},
"devDependencies": {
"eslint": "^7.31.0",
"github-reserved-names": "^2.0.4",
"make-fetch-happen": "^9.0.4",
"ver": "^6.0.2"
},
"scripts": {
"authors": "bash tools/authors.sh",
"build:reserved": "node tools/reserved-names.js",
"build:mutations": "node tools/update-mutations.js",
"lint": "npx eslint *.js",
"test": "eslint *.js",
"patch": "npm run lint && npx ver patch",
"minor": "npm run lint && npx ver minor",
"major": "npm run lint && npx ver major"
}
}