-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.26 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
47
48
49
50
51
52
53
54
55
56
{
"name": "bytom.js",
"version": "2.0.0-Beta2",
"description": "bytom wrapper javascript",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Bytom/bytom.js.git"
},
"license": "Apache-2.0",
"engines": {
"node": ">=4.7"
},
"scripts": {
"docs": "jsdoc -c jsdoc.conf.json",
"build": "babel src --out-dir dist",
"test": "mocha testCompiled",
"pretest": "npm run build && babel test --out-dir testCompiled",
"prepublish": "npm run build"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"bn.js": "^5.1.1",
"braces": "^3.0.2",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.5.5",
"kind-of": "^6.0.3",
"lodash": "^4.17.15",
"lodash.mergewith": "^4.6.2",
"minimist": "^1.2.5",
"mocha": "^5.2.0",
"uuid": "~3.0.0"
},
"dependencies": {
"axios": "^0.19.2",
"btoa": "^1.2.1"
},
"bugs": {
"url": "https://github.com/Bytom/bytom.js/issues"
},
"homepage": "https://github.com/Bytom/bytom.js#readme",
"directories": {
"doc": "docs",
"test": "test"
},
"keywords": [
"bytom.js",
"bytom",
"dapp",
"bytom"
],
"author": "bytom.io"
}