forked from paritytech/txwrapper-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 837 Bytes
/
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
{
"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",
"build": "lerna run build",
"build:workspace": "cd $INIT_CWD && rimraf lib/ && substrate-exec-tsc -p tsconfig.build.json",
"lint": "substrate-dev-run-lint",
"test": "substrate-exec-jest",
"docs": "typedoc"
},
"devDependencies": {
"@substrate/dev": "^0.5.4",
"lerna": "^4.0.0",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"typedoc": "^0.20.35",
"typedoc-plugin-markdown": "^3.7.1"
}
}