-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
56 lines (56 loc) · 1.71 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
{
"name": "nodejs-sdk",
"version": "1.0.0",
"description": "Node.js sdk for FISCO BCOS",
"keywords": [
"FISCO BCOS"
],
"homepage": "https://github.com/FISCO-BCOS/nodejs-sdk",
"bugs": "https://github.com/FISCO-BCOS/nodejs-sdk/issues",
"authors": {
"name": "Li Chenxi",
"email": "[email protected]",
"url": "https://github.com/vita-dounai"
},
"repository": {
"type": "git",
"url": "https://github.com/FISCO-BCOS/nodejs-sdk.git"
},
"author": "catli",
"engineStrict": true,
"engines": {
"node": ">=8.10.0",
"npm": ">=5.6.0"
},
"scripts": {
"postinstall": "npm run bootstrap",
"repoclean": "lerna clean && npm run clean-solc-0.4 && npm run clean-solc-0.5",
"bootstrap": "lerna bootstrap && npm run install-solc-0.4 && npm run install-solc-0.5",
"install-solc-0.4": "cd ./packages/api/compile/compilers/solc-0.4 && npm install",
"install-solc-0.5": "cd ./packages/api/compile/compilers/solc-0.5 && npm install",
"clean-solc-0.4": "rm -rf ./packages/api/compile/compilers/solc-0.4/node_modules",
"clean-solc-0.5": "rm -rf ./packages/api/compile/compilers/solc-0.5/node_modules",
"test": "mocha"
},
"dependencies": {
"lerna": "^3.16.1"
},
"devDependencies": {
"mocha": "^7.1.2"
},
"nyc": {
"all": true,
"check-coverage": false,
"statements": 5,
"branches": 8,
"functions": 7,
"lines": 5
},
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "https://www.apache.org/licenses/LICENSE-2.0"
}
]
}