-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 897 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
28
29
30
31
32
33
34
35
36
{
"name": "@roamin/local-koinos",
"description": "Local Koinos CLI'",
"version": "0.4.16",
"main": "lib/index.js",
"license": "MIT",
"bin": {
"local-koinos": "bin/local-koinos"
},
"dependencies": {
"@koinos/proto-js": "^1.0.3",
"amqplib": "^0.9.1",
"chalk": "4.1.2",
"commander": "^9.0.0",
"koilib": "5.6.1"
},
"devDependencies": {
"@types/amqplib": "^0.8.2",
"@types/jest": "^29.1.2",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"jest": "^29.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.6.4"
},
"scripts": {
"lint": "eslint",
"build": "rimraf lib && tsc",
"prepublishOnly": "yarn lint && yarn build",
"ci": "yarn lint && yarn build && jest -i"
}
}