-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
43 lines (43 loc) · 1.84 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
{
"name": "txwrapper-core",
"repository": "https://github.com/paritytech/txwrapper-core",
"author": "Parity Technologies <[email protected]>",
"license": "Apache-2.0",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"deploy": "yarn run build && lerna version --conventional-commits --create-release github && lerna publish from-package",
"deploy:force": "yarn run build && yarn lerna version ${FORCE_VERSION} --force-publish --conventional-commits --create-release github && yarn lerna publish from-package",
"version": "yarn install && git stage yarn.lock",
"build": "lerna run build",
"repair": "lerna repair",
"build:workspace": "substrate-exec-rimraf $INIT_CWD/lib/ && cd $INIT_CWD && tsc -p tsconfig.build.json",
"lint": "substrate-dev-run-lint",
"lint:fix": "substrate-dev-run-lint --fix",
"lint:ci": "substrate-dev-run-lint",
"test": "substrate-exec-jest --detectOpenHandles",
"test:watch": "substrate-exec-jest --watch",
"test:cov": "substrate-exec-jest --detectOpenHandles --coverage",
"test:ci": "NODE_ENV=test substrate-exec-jest --detectOpenHandles --runInBand",
"docs": "typedoc --plugin typedoc-plugin-missing-exports --plugin typedoc-theme-hierarchy --plugin typedoc-plugin-remove-references --gitRemote origin"
},
"devDependencies": {
"@polkadot/util-crypto": "^13.1.1",
"@substrate/dev": "^0.9.0",
"@types/node-fetch": "^2.6.3",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"lerna": "8.1.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typedoc": "^0.27.2",
"typedoc-plugin-missing-exports": "^3.0.0",
"typedoc-plugin-remove-references": "^0.0.6",
"typedoc-theme-hierarchy": "^5.0.3",
"typescript": "5.7.2"
},
"packageManager": "[email protected]"
}