-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.29 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
{
"name": "create-acot-preset",
"version": "0.0.1",
"description": "Create acot preset project.",
"keywords": [
"acot"
],
"homepage": "https://github.com/acot-a11y/create-acot-preset#readme",
"bugs": {
"url": "https://github.com/acot-a11y/create-acot-preset/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/acot-a11y/create-acot-preset.git"
},
"license": "MIT",
"author": "wadackel",
"bin": {
"create-acot-preset": "lib/bin.js"
},
"files": [
"lib",
"template.md",
"!__tests__"
],
"scripts": {
"build": "tsc",
"test": "./test/run.sh",
"format": "prettier --write .",
"release": "standard-version",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css,md,yml,json}": [
"prettier --write"
]
},
"dependencies": {
"@acot/logger": "0.0.10",
"@acot/utils": "0.0.10",
"@scaffdog/core": "1.0.1",
"chalk": "^4.1.0",
"execa": "^5.0.0",
"meow": "^9.0.0",
"update-notifier": "^5.1.0"
},
"devDependencies": {
"@acot/tsconfig": "0.1.0",
"husky": "6.0.0",
"lint-staged": "10.5.4",
"prettier": "2.2.1",
"prettier-plugin-packagejson": "2.2.10",
"standard-version": "9.2.0",
"type-fest": "1.0.1",
"typescript": "4.2.4"
}
}