-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
51 lines (51 loc) · 1.83 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
{
"name": "root",
"private": true,
"scripts": {
"postinstall": "lerna bootstrap",
"clean:deps": "lerna clean --yes && rimraf node_modules",
"clean:dist": "rimraf \"packages/*/dist\"",
"clean:bundles": "rimraf bundles",
"clean": "npm run clean:dist && npm run clean:bundles && npm run clean:deps",
"build": "npm run clean:dist && shglob -c \"tsc --build packages/core/ts.json packages/core-eosio/ts.json\" -g \"packages/!(core*)/ts.json\"",
"watch": "npm run clean:dist && shglob -c \"tsc --build --watch packages/core/ts.json packages/core-eosio/ts.json\" -g \"packages/!(core*)/ts.json\"",
"bundle": "npm run clean:bundles && rollup -c",
"create": "node createPackage.js",
"lint": "tslint --project tsconfig.json --config tslint.json \"packages/*/src/**/*.ts\" \"packages/*/__tests__/**/*.ts\"",
"lint-fix": "npm run lint -- --fix",
"prepare": "npm run build",
"test": "eosup testnet -sq -c \"mocha -r ts-node/register \\\"packages/**/__tests__/*.spec.ts\\\"\""
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.6",
"@types/node": "^12.0.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eosjs": "^20.0.0",
"eosup": "^1.1.2",
"husky": "^2.3.0",
"lerna": "^3.13.4",
"mocha": "^6.1.4",
"mocha-typescript": "^1.1.17",
"prettier": "^1.17.1",
"rimraf": "^2.6.3",
"rollup": "^1.12.1",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-typescript": "^1.0.1",
"shglob": "^1.0.1",
"ts-node": "^8.1.0",
"tslib": "^1.9.3",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.4.5"
}
}