-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 loc) · 956 Bytes
/
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
{
"private": true,
"version": "0.5.0",
"scripts": {
"format": "prettier -w .",
"lint": "eslint packages/**/*.js",
"lint:fix": "eslint packages/** --fix",
"test": "echo \"no test specified\""
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"chalk": "^5.0.0",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.9.0",
"eslint-plugin-node": "^11.1.0",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1",
"simple-git-hooks": "^2.7.0",
"typescript": "^4.5.5"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged --concurrent false",
"commit-msg": "node scripts/verifyCommit.mjs $1"
},
"lint-staged": {
"*.js": [
"eslint --cache --fix",
"eslint",
"prettier --write"
]
},
"directories": {
"doc": "docs",
"example": "examples",
"test": "test"
},
"description": ""
}