generated from rhdeck/ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.04 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
{
"name": "aoc-2022",
"private": false,
"version": "1.0.0",
"description": "",
"main": "lib/index.js",
"bin": "lib/bin.js",
"scripts": {
"setup": "./init-template.js",
"pre-commit": "yarn test",
"test": "tsc --noEmit",
"build": "tsc && chmod +x lib/bin.js && yarn pack -f package.tgz",
"docs:bin": "mkdir docstemp ; (commanderdoc markdown lib/bin.js -o docstemp/__cli.md --cli-name \"npx `jq -r .name package.json`\") ; ",
"docs:lib": "typedoc --theme markdown --readme none --includeVersion --out docstemp src/ && rm README.md ; mv docstemp/README.md docstemp/_library.md",
"docs:compile": "mkdir docstemp ; cp TOP.md docstemp/README.md ; concat-md docstemp > README.md && rm -rf docstemp",
"docs": "rm -rf docstemp && yarn docs:lib && yarn docs:bin && yarn docs:compile",
"prepublishOnly": "yarn build && yarn docs && git commit README.md -m \"docs: updating docs\" && git push",
"watch": "livelink watch",
"prepare": "install-peers"
},
"repository": {
"type": "git",
"url": "https://github.com/rhdeck/aoc-2022.git"
},
"author": "Ray Deck",
"license": "MIT",
"bugs": {
"url": "https:/github.com/rhdeck/aoc-2022/issues"
},
"homepage": "https://github.com/rhdeck/aoc-2022#README",
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@raydeck/livelink": "^1.5.2",
"@types/inquirer": "^9.0.3",
"@types/node": "^14.14.17",
"@types/validate-npm-package-name": "^3.0.2",
"commanderdoc": "^0.1.11",
"concat-md": "^0.3.5",
"git-branch-is": "^4.0.0",
"husky": "^4.3.6",
"install-peers-cli": "^2.2.0",
"ts-node": "^10.9.1",
"typedoc": "^0.22.4",
"typedoc-plugin-markdown": "^3.11.0",
"typescript": "^4.9.3",
"validate-npm-package-name": "^3.0.0"
},
"files": [
"src",
"lib"
],
"dependencies": {
"commander": "^6.2.1",
"inquirer": "8"
},
"liveLink": {
"ignoreMasks": [
"package.tgz",
"lib/**",
"README.md",
"docs/**",
"docstemp/**"
]
}
}