-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
54 lines (54 loc) · 1.41 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
{
"name": "@wenyanlang/wyg-registry",
"private": true,
"scripts": {
"build": "ts-node ./scripts/build-all.ts",
"build:homepage": "ts-node ./scripts/build-homepage.ts",
"build:readme": "ts-node ./scripts/build-readme.ts",
"verify": "ts-node ./scripts/verify",
"lint": "eslint **/*.ts",
"lint:fix": "npm run lint -- --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antfu/wyg-registry.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.ts": [
"eslint --fix",
"git add"
]
},
"author": "Anthony Fu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/antfu/wyg-registry/issues"
},
"homepage": "https://github.com/antfu/wyg-registry#readme",
"devDependencies": {
"@antfu/eslint-config-ts": "^0.2.10",
"@types/fs-extra": "^8.0.1",
"@types/js-yaml": "^3.12.2",
"@types/json-stable-stringify": "^1.0.32",
"@types/markdown-it": "0.0.9",
"@types/node": "^13.1.6",
"@wenyanlang/wyg": "0.0.5",
"commander": "^4.1.0",
"consola": "^2.11.3",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.3.0",
"fs-extra": "^8.1.0",
"husky": "4.0.5",
"js-yaml": "^3.13.1",
"json-stable-stringify": "^1.0.1",
"lint-staged": "9.5.0",
"markdown-it": "^10.0.0",
"ts-node": "^8.6.0",
"typescript": "^3.7.4"
}
}