forked from dhiway/cord.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.66 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
70
71
72
73
74
75
76
{
"repository": "https://github.com/dhiway/cord.js",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"check": "tsc -p tsconfig.json --noEmit",
"build": "yarn workspaces foreach -pt --no-private run build",
"build:docs": "typedoc --theme default --out docs/api && touch docs/.nojekyll",
"bundle": "yarn workspace @cord.network/api run bundle",
"clean": "yarn workspaces foreach -p --no-private run clean",
"clean:docs": "rm -rf docs/api",
"demo": "yarn ts-node demo/src/demo.ts --trace-warnings",
"bench": "yarn ts-node demo/src/bench.ts --trace-warnings",
"start": "yarn ts-node demo/src/start.ts",
"version": "yarn workspaces foreach version",
"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",
"style": "prettier -l packages",
"style:fix": "yarn style --write",
"test": "jest --coverage --group=unit --detectOpenHandles",
"test:ci": "yarn test --ci",
"test:integration:run": "jest --group=integration -w 3 --silent --detectOpenHandles",
"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",
"@types/node": "^17.0.35",
"@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": "^4.0.0",
"husky": "^7.0.0",
"jest": "^27.4.7",
"jest-docblock": "^27.4.0",
"jest-runner": "^27.4.6",
"jest-runner-groups": "^2.1.0",
"moment": "^2.29.1",
"prettier": "^2.4.1",
"ts-jest": "^27.1.2",
"ts-jest-resolver": "^2.0.0",
"ts-node": "^10.4.0",
"typedoc": "^0.22.7",
"typescript": "^4.5.4",
"wait-for-enter": "^1.0.0"
},
"version": "0.5.2-5",
"packageManager": "yarn@3.2.1",
"dependencies": {
"@multiformats/blake2": "^1.0.5",
"multiformats": "^9.4.7"
}
}