forked from ecomfe/react-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 900 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
{
"private": true,
"name": "@huse/core",
"version": "0.8.0",
"main": "index.js",
"repository": "git@github.com:ecomfe/react-hooks.git",
"author": "otakustay <otakustay@gmail.com>",
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"generate": "node scripts/generate",
"lint": "lerna run lint --parallel && skr lint scripts",
"test": "lerna run test --concurrency 1",
"build": "lerna run build",
"build-check": "lerna run build-check",
"release": "lerna version --conventional-commits --no-push",
"ci": "yarn && yarn lint && yarn build-check && yarn test",
"preversion": "yarn ci",
"prepack": "yarn && yarn build",
"doc:dev": "cd packages/doc && docz dev"
},
"devDependencies": {
"fs-extra": "^8.1.0",
"immer": "^6.0.1",
"inquirer": "^7.0.6",
"lerna": "^3.20.2",
"sort-package-json": "^1.44.0"
}
}