-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
{
"name": "@asd14/zeroboot-stacks",
"version": "0.1.0",
"description": "",
"license" : "BSD-3-Clause",
"homepage": "https://github.com/asd-xiv/zeroboot-stacks",
"author": {
"name": "Andrei Dumitrescu",
"url": "https://github.com/andreidmt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asd-xiv/zeroboot-stacks.git"
},
"bugs": {
"url": "https://github.com/asd-xiv/zeroboot-stacks/issues"
},
"type": "module",
"scripts": {
"----UTIL": "",
"prepare": "git config --local core.hooksPath .githooks",
"setup": "npm ci --also=dev",
"update": "ncu --interactive",
"postupdate": "npm audit fix",
"format": "prettier --write --prose-wrap=always .",
"----LINT": "",
"lint.js": "eslint src",
"lint.md": "markdownlint '*.md'",
"lint": "npm run lint.js && npm run lint.md",
"typecheck": "tsc --pretty --noEmit"
},
"devDependencies": {
"@asd14/eslint-config": "^8.1.0",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@types/inquirer": "^9.0.2",
"eslint": "^8.26.0",
"inquirer": "^9.1.4",
"lint-staged": "^13.0.3",
"markdownlint-cli": "^0.32.2",
"npm-check-updates": "^16.3.15",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=16",
"npm": ">=8"
}
}