forked from KILTprotocol/sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.47 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"repository": "https://github.com/kiltprotocol/sdk-js",
"private": true,
"workspaces": [
"packages/*",
"docs/*"
],
"license": "BSD-4-Clause",
"scripts": {
"check": "tsc -p tsconfig.json --noEmit",
"build": "yarn workspaces foreach -p --topological-dev --exclude '{root-workspace}' run build",
"build:docs": "typedoc --theme default --out docs/api && touch docs/.nojekyll",
"bundle": "yarn workspace @kiltprotocol/sdk-js run bundle",
"clean": "yarn workspaces foreach -p --exclude '{root-workspace}' run clean",
"clean:docs": "rm -rf docs/api",
"prepublish": "yarn workspaces foreach -p --no-private exec cp -f ../../LICENSE .",
"publish": "yarn workspaces foreach -pt --no-private npm publish",
"lint": "eslint packages --format=codeframe",
"lint:fix": "yarn lint --fix",
"set:version": "yarn workspaces foreach -pt exec npm version --no-git-tag-version",
"style": "prettier -l packages",
"style:fix": "yarn style --write",
"test": "jest --coverage --group=unit",
"test:ci": "yarn test --ci",
"test:integration:run": "jest --group=integration -b -w 3 --silent",
"test:integration": "{ lsof -i :9944 > /dev/null && yarn test:integration:run; } || echo 'Can not connect to chain. Is it running?'; exit 1;",
"test:watch": "yarn test --watch"
},
"husky": {
"hooks": {
"pre-push": "yarn lint && yarn style",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "^9.0.1",
"@commitlint/config-conventional": "^9.0.1",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsdoc": "^37.2.0",
"eslint-plugin-license-header": "^0.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"husky": "^4.2.5",
"jest": "^27.4.7",
"jest-docblock": "^27.4.0",
"jest-runner": "^27.4.6",
"jest-runner-groups": "^2.1.0",
"prettier": "^2.4.1",
"ts-jest": "^27.1.2",
"ts-jest-resolver": "^2.0.0",
"ts-node": "^10.4.0",
"typedoc": "^0.22.7",
"typedoc-plugin-external-module-name": "^4.0.6",
"typescript": "^4.5.4"
},
"version": "0.26.0-6",
"packageManager": "[email protected]"
}