forked from HoOngEe/codechain-santa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.14 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
{
"name": "codechain-santa",
"version": "1.0.0",
"description": "The santa gives transaction presents including order for CodeChain",
"main": "build/index.js",
"scripts": {
"start": "ts-node ./index.ts",
"build": "tsc -p .",
"test": "npm run lint",
"lint": "tslint -p . && prettier '**/*.ts' -l",
"fmt": "tslint -p . --fix && prettier '**/*ts' --write"
},
"author": "CodeChain Team <[email protected]>",
"license": "ISC",
"dependencies": {
"@types/lodash": "^4.14.123",
"bignumber.js": "^7.2.1",
"codechain-sdk": "https://github.com/HoOngEe/codechain-sdk-js.git#range-pendingTx-lib",
"config": "^2.0.1",
"request-json": "^0.6.3",
"request-promise-native": "^1.0.5",
"sleep": "^5.2.3"
},
"devDependencies": {
"@types/bignumber.js": "^5.0.0",
"@types/config": "^0.0.34",
"@types/node": "^10.9.1",
"@types/request": "^2.47.1",
"@types/request-promise-native": "^1.0.15",
"@types/sleep": "^0.0.7",
"prettier": "1.14.2",
"ts-node": "^7.0.1",
"tsc": "^1.20150623.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.10.0",
"typescript": "^3.1.6"
}
}