-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
46 lines (46 loc) · 1.01 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
{
"name": "qtumjs",
"version": "1.9.3",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"license": "MIT",
"scripts": {
"test": "mocha lib/*_test.js",
"build": "tsc",
"watch": "tsc -w",
"lint": "tslint --project tsconfig.json",
"build:umd": "webpack --config webpack.config.js"
},
"npmName": "qtumjs",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"dependencies": {
"@types/debug": "^4.1.5",
"axios": "^0.19.2",
"btoa": "^1.1.2",
"debug": "^4.1.1",
"eventemitter3": "^2.0.3",
"qtumjs-ethjs-abi": "^1.0.3",
"url-parse": "^1.4.7"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^8.1.1",
"ts-loader": "^8.0.2",
"tslint": "^6.1.3",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
}
}