-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
88 lines (88 loc) · 2.13 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "chain3",
"namespace": "MOAC",
"version": "0.1.23",
"description": "MOAC JavaScript API, middleware to talk to a MOAC node over RPC",
"main": "./index.js",
"directories": {
"lib": "./lib",
"test": "test",
"example": "examples"
},
"dependencies": {
"base-x": "^3.0.8",
"bignumber.js": "^8.1.1",
"crypto-js": "^3.3.0",
"graceful-fs": "^4.2.3",
"hash.js": "^1.1.7",
"lodash": "^4.17.15",
"number-to-bn": "*",
"secp256k1": "^3.8.0",
"solc": "^0.4.24",
"sprintf-js": "^1.1.2",
"underscore": "^1.10.2",
"utf8": "^2.1.1",
"xhr2": "^0.2.0",
"xmlhttprequest": "*"
},
"browser": {
"xmlhttprequest": "./lib/utils/browser-xhr.js"
},
"devDependencies": {
"body-parser": "^1.19.0",
"bower": "^1.8.8",
"browserify": "^16.5.1",
"browserify-cryptojs": "^0.3.1",
"chai": "^4.2.0",
"concurrently": "^3.6.1",
"coveralls": "^2.11.2",
"del": "^4.1.1",
"ejs": "~2.5.7",
"exorcist": "^0.4.0",
"express": "^4.17.1",
"gulp": "^4.0.2",
"gulp-jshint": ">=1.5.0",
"gulp-rename": "^1.4.0",
"gulp-replace": "^0.5.3",
"gulp-streamify": "0.0.5",
"gulp-uglify": "^3.0.2",
"gulp-util": "*",
"istanbul": "^0.4.4",
"jshint": "^2.11.1",
"jszip": "^2.5.0",
"keccak": "^1.0.2",
"localstorejs": "^0.1.9",
"mocha": "^6.2.3",
"node-safe-filesaver": "^0.1.0",
"sandboxed-module": "^2.0.4",
"vinyl-source-stream": "^1.1.0"
},
"scripts": {
"build": "gulp",
"watch": "gulp watch",
"test": "mocha",
"test-coveralls": "istanbul cover _mocha -- -R spec && cat coverage/lcov.info | coveralls --verbose"
},
"repository": {
"type": "git",
"url": "https://github.com/MOACChain/chain3/releases"
},
"homepage": "https://github.com/MOACChain/chain3",
"bugs": {
"url": "https://github.com/MOACChain/chain3/issues"
},
"keywords": [
"MOAC",
"javascript",
"API"
],
"author": "MOAC Tech",
"authors": [
{
"name": "MOAC Tech Inc.",
"email": "[email protected]",
"url": "https://github.com/MOACChain/chain3"
}
],
"license": "LGPL-3.0"
}