-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "jarbot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --coverage --verbose",
"test:watch": "jest --watchAll --coverage --verbose",
"prebuild": "rimraf dist",
"build": "tsc --declaration",
"postbuild": "node bin/copy-files",
"start": "node ./dist/index.js",
"prepublish": "npm run build",
"publish": "npm publish dist/providers"
},
"author": "Yuren Ju <yurenju@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/coinbase": "^2.0.1",
"@types/formidable": "^1.0.31",
"@types/jasmine": "^2.8.7",
"@types/micro": "^7.3.1",
"@types/node": "^10.1.2",
"@types/node-fetch": "^1.6.9",
"@types/promise": "^7.1.30",
"@types/sinon": "^5.0.0",
"dotenv": "^5.0.1",
"jest": "^23.0.0",
"rimraf": "^2.6.2",
"shelljs": "^0.8.2",
"sinon": "^5.0.10",
"test-listen": "^1.1.0",
"ts-jest": "^22.4.6",
"tslint": "^5.10.0",
"typescript": "^2.8.3"
},
"dependencies": {
"coinbase": "^2.0.8",
"form-data": "^2.3.2",
"formidable": "^1.2.1",
"jarbot-provider": "0.0.1",
"micro": "^9.3.1",
"node-fetch": "^2.1.2"
}
}