-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 873 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
{
"name": "@boiboif/tree-utils",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/boiboif/tree-utils.git"
},
"scripts": {
"prepare": "npx husky install",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write \"packages/*/src/**/*.ts\"",
"lint": "eslint \"packages/*/src/**/*.ts\" --cache",
"clean": "rimraf **/node_modules",
"build": "cd packages/tree-utils && npm run build",
"changeset": "changeset",
"version": "changeset version",
"publish": "changeset publish --registry=https://registry.npmjs.com/"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint --fix"
]
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@umijs/fabric": "^4.0.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.3"
}
}