-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.98 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
{
"name": "@userscripters/generate-stackapps",
"description": "StackApps post generator for userscripts",
"version": "1.3.0",
"main": "dist/index.js",
"type": "module",
"keywords": [
"stackoverflow",
"stackapps",
"userscripts"
],
"scripts": {
"build": "rimraf dist/ && tsc && npm run executable",
"executable": "sed -i \"1s/^/#!\\/usr\\/bin\\/env node\\n/\" dist/index.js",
"postversion": "bash ./scripts/postversion.sh",
"readme": "bash ./scripts/readme.sh",
"stackapps": "bash ./scripts/stackapps.sh",
"typecheck": "tsc --noEmit",
"test": "npm run typecheck && mocha",
"version": "npm run test && npm run build && git add dist && git commit --amend --no-edit",
"usage": "bash ./scripts/usage.sh"
},
"license": "GPL-3.0-or-later",
"author": {
"name": "Oleg Valter",
"email": "[email protected]",
"url": "https://stackoverflow.com/users/11407695"
},
"contributors": [
{
"name": "double beep",
"url": "https://github.com/double-beep"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/userscripters/generate-stackapps.git"
},
"bugs": {
"url": "https://github.com/userscripters/generate-stackapps/issues"
},
"homepage": "https://github.com/userscripters/generate-stackapps",
"devDependencies": {
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.9",
"@types/node": "^20.17.6",
"@types/yargs": "^17.0.33",
"@userscripters/generate-readme": "^3.0.2",
"@userscripters/generate-stackapps": "^1.3.0",
"chai": "^5.1.2",
"mocha": "^10.8.2",
"rimraf": "^5.0.10",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"bin": {
"generate-stackapps": "dist/index.js"
},
"dependencies": {
"chalk": "^5.3.0",
"yargs": "^17.7.2"
}
}