forked from ckb-js/ckb-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.45 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": "ckb-sdk-js",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"tsc": "npx lerna run tsc",
"cm": "git-cz",
"build:lib": "npx lerna run tsc",
"build:umd": "./scripts/bundle-umd.sh",
"clean:lib": "rimraf **/packages/*/lib && rimraf **/packages/*/lib-esm",
"docs": "typedoc --out docs --entryPointStrategy packages 'packages/*' --name CKB-SDK.js --excludeExternals --theme default --readme README.md",
"publish": "npx lerna run tsc && npx lerna publish --from-package",
"test": "jest --coverage"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*/**/*.{ts,js}": [
"eslint --fix",
"git add"
]
},
"devDependencies": {
"@cryptape/sdk-ts-config": "0.0.1",
"@types/node": "16.10.2",
"@typescript-eslint/eslint-plugin": "4.32.0",
"@typescript-eslint/parser": "4.32.0",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jest": "24.5.0",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.2",
"jest": "27.2.4",
"lint-staged": "11.1.2",
"prettier": "2.4.1",
"rimraf": "3.0.2",
"typedoc": "0.22.18",
"typescript": "4.4.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}