-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.51 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
{
"name": "evm-lite-js",
"private": true,
"author": "Mosaic Networks",
"workspaces": [
"packages/*"
],
"authors": [
{
"name": "Danu Kumanan",
"email": "danushan@babble.io",
"homepage": "https://github.com/danu30"
}
],
"scripts": {
"test": "jest",
"clean": "lerna run clean && rm -rf node_modules",
"clean:build": "lerna run clean:build",
"build": "lerna run build",
"bootstrap": "lerna bootstrap",
"link": "lerna link",
"prepublish": "yarn lint && yarn run build && lerna link",
"publish": "lerna publish",
"publish:dev": "lerna publish --registry http://192.168.1.4:4873 --no-git-tag-version",
"doc": "lerna run doc",
"rst": "yarn run ts-node ./docs/scripts/convert",
"clean:rst": "rm ./docs/*.rst",
"lint": "lerna run lint",
"linkall": "ts-node ./scripts/link-all",
"unlinkall": "ts-node ./scripts/unlink-all",
"watch": "tsc --build --watch ./packages/tsconfig.json"
},
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/chalk": "^2.2.0",
"@types/figlet": "^1.2.0",
"@types/inquirer": "0.0.43",
"@types/jest": "^24.0.15",
"@types/lowdb": "^1.0.6",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^5.2.5",
"@types/node": "^10.11.0",
"@types/vorpal": "^1.11.0",
"jest": "^24.8.0",
"jsdoc": "^3.5.5",
"mocha": "^5.2.0",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tsdoc": "^0.0.4",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typedoc": "^0.14.2",
"typedoc-plugin-markdown": "^2.0.8",
"typescript": "^3.1.6",
"lerna": "^3.15.0"
}
}