-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
33 lines (33 loc) · 1.02 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
{
"name": "@rei-network/cli",
"version": "3.0.2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "GPL-3.0-or-later",
"bin": {
"rei": "dist/index.js"
},
"scripts": {
"preinstall": "npm run binWorkaround",
"binWorkaround": "test -f dist/index.js || echo 'install fails if bin script does not exist (https://github.com/npm/cli/issues/2632), creating placeholder file at \"dist/index.js\"' && mkdir -p 'dist' && touch dist/index.js",
"build": "tsc --build tsconfig.json",
"test": "echo @rei-network/cli has no test cases"
},
"devDependencies": {
"@types/node": "^14.14.9",
"prompts": "^2.4.1",
"typescript": "^4.1.2"
},
"dependencies": {
"@rei-network/api": "^2.0.2",
"@rei-network/bls": "^0.0.2",
"@rei-network/core": "^3.0.2",
"@rei-network/ipc": "^2.0.2",
"@rei-network/rpc": "^3.0.2",
"@rei-network/utils": "^0.1.1",
"@rei-network/wallet": "^0.1.1",
"commander": "^6.2.1",
"ethereumjs-util": "^7.1.4",
"inquirer": "^8.0.0"
}
}