forked from wenyan-lang/wyg-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.24 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
{
"name": "@wenyanlang/wyg-registry",
"private": true,
"scripts": {
"build": "ts-node ./scripts/build-registry.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/json-stable-stringify": "^1.0.32",
"@types/node": "^13.1.6",
"@types/markdown-it": "0.0.9",
"@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",
"json-stable-stringify": "^1.0.1",
"lint-staged": "9.5.0",
"ts-node": "^8.6.0",
"markdown-it": "^10.0.0",
"typescript": "^3.7.4"
}
}