generated from userscripters/template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.42 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
{
"name": "@userscripters/generate-headers",
"version": "3.5.0",
"description": "Userscript manager header generator",
"icon": "",
"scripts": {
"test": "TS_NODE_PROJECT='./test/tsconfig.json' mocha",
"lint": "eslint src",
"clean": "rm -rf dist",
"prebuild": "npm run lint && npm run clean",
"build": "tsc --outDir dist && npm run executable",
"executable": "sed -i \"1s/^/#!\\/usr\\/bin\\/env node\\n/\" dist/cli.js",
"version": "npm run test && npm run build && git add dist && git commit --amend --no-edit",
"postversion": "bash ./scripts/postversion.sh",
"readme": "bash ./scripts/readme.sh",
"usage": "bash ./scripts/usage.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/userscripters/generate-headers.git"
},
"keywords": [
"userscripts",
"tampermonkey",
"greasemonkey",
"violentmonkey",
"stackoverflow"
],
"author": {
"name": "Oleg Valter",
"email": "[email protected]"
},
"contributors": [
{
"name": "double beep",
"url": "https://github.com/double-beep"
}
],
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/userscripters/generate-headers/issues"
},
"homepage": "https://github.com/userscripters/generate-headers#readme",
"devDependencies": {
"@eslint/js": "^9.18.0",
"@stylistic/eslint-plugin": "^2.13.0",
"@types/chai": "5.0.1",
"@types/eslint": "^9.6.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.7",
"@types/semver": "^7.5.8",
"@types/sinon": "^17.0.3",
"@types/tampermonkey": "^5.0.4",
"@types/validator": "^13.12.2",
"@types/yargs": "^17.0.33",
"@userscripters/generate-readme": "^3.0.2",
"@userscripters/generate-stackapps": "^1.3.0",
"chai": "^5.1.2",
"mocha": "^11.0.1",
"sinon": "^19.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.20.0"
},
"dependencies": {
"chalk": "^5.4.1",
"eslint-plugin-userscripts": "^0.5.6",
"semver": "^7.6.3",
"validator": "^13.12.0",
"yargs": "^17.7.2"
},
"main": "dist/index.js",
"type": "module",
"bin": {
"generate-headers": "dist/cli.js"
}
}