forked from dhiway/cord.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 3 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 3 KB
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
{
"repository": "https://github.com/dhiway/cord.js",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"check": "tsc -p tsconfig.json --noEmit",
"build": "yarn workspaces foreach -Apt --exclude '{root-workspace}' --exclude @cord.network/asset --exclude @cord.network/namespace --exclude @cord.network/did --exclude @cord.network/chain-space-did --exclude @cord.network/statement --exclude @cord.network/statement-did --exclude @cord.network/schema --exclude @cord.network/registries --exclude @cord.network/entries --exclude @cord.network/chain-space --exclude @cord.network/schema-did --exclude @cord.network/network-score run build",
"build:docs": "typedoc --skipErrorChecking --theme default --out docs/api --tsconfig tsconfig.docs.json && touch docs/.nojekyll",
"bundle": "yarn workspace @cord.network/sdk run bundle",
"clean": "rimraf tests/dist && yarn workspaces foreach -Ap --exclude '{root-workspace}' run clean",
"clean:docs": "rimraf docs/api",
"set:version": "yarn workspaces foreach -pt exec npm version --no-git-tag-version",
"prepublish": "yarn workspaces foreach -Ap --no-private exec cp -f ../../LICENSE .",
"publish": "yarn workspaces foreach -Apt --no-private npm publish",
"publish-rc": "yarn workspaces foreach -Apt --no-private npm publish --tag rc",
"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 --forceExit",
"test:watch": "yarn test --watch",
"demo-profile": "tsx --no-cache demo/src/profile.ts",
"demo-registry": "tsx --no-cache demo/src/registry-tx.ts",
"demo-registry-entry": "tsx --no-cache demo/src/registry-entry-tx.ts"
},
"husky": {
"hooks": {
"pre-push": "yarn lint && yarn style",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^9.1.2",
"@playwright/test": "^1.41.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.6",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^37.9.7",
"eslint-plugin-license-header": "^0.6.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^9.0.10",
"jest": "^29.7.0",
"moment": "^2.30.1",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"testcontainers": "^10.7.1",
"ts-jest": "^29.1.2",
"ts-jest-resolver": "^2.0.1",
"tsx": "^4.7.1",
"typedoc": "^0.25.8",
"typescript": "^5.3.3"
},
"resolutions": {
"typescript": "^5.3.3"
},
"version": "0.9.6-6"
}