-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.75 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
{
"name": "vaprpc",
"namespace": "vaporyjs",
"version": "5.0.1",
"description": "Vapory JSON RPC",
"author": "The Augur Developers <team@augur.net>",
"license": "MIT",
"main": "src/index.js",
"scripts": {
"test": "mocha test/*.js test/block-management test/raw-transactions test/reducers test/transport test/utils",
"lint": "eslint src test/*.js test/block-management test/raw-transactions test/reducers test/transport test/utils",
"coverage": "istanbul cover --include-all-sources --root ./src ./node_modules/mocha/bin/_mocha test/",
"link": "npm link @volut/speedomatic vaporyjs-blockstream",
"genversion": "genversion src/version.js",
"build": "mkdirp dist && browserify ./exports.js -o ./dist/vaprpc.js && uglifyjs ./dist/vaprpc.js -o ./dist/vaprpc.min.js",
"build:tests": "browserify ./test/reducers/*.js -o ./test/browser/bundle.js",
"postinstall": "postinstall-build --only-as-dependency dist",
"prepublishOnly": "postinstall-build dist",
"preversion": "npm test",
"version": "npm run genversion && git add src/version.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vaporyjs/vaprpc.git"
},
"bugs": {
"url": "https://github.com/vaporyjs/vaprpc/issues"
},
"homepage": "https://github.com/vaporyjs/vaprpc#readme",
"dependencies": {
"async": "1.5.2",
"bignumber.js": "2.3.0",
"browser-request": "0.3.3",
"clone": "2.1.1",
"es6-promise": "4.2.4",
"vaporyjs-blockstream": "4.0.1",
"vaporyjs-tx": "1.3.3",
"immutable-delete": "1.0.1",
"keccak": "1.2.0",
"lodash.assign": "4.2.0",
"lodash.get": "4.4.2",
"lodash.set": "4.3.2",
"lodash.unset": "4.5.2",
"oboe": "2.1.3",
"postinstall-build": "5.0.1",
"redux": "3.6.0",
"redux-thunk-subscribe": "1.0.3",
"@volut/speedomatic": "2.1.5",
"uuid": "3.0.1"
},
"devDependencies": {
"babel-cli": "6.22.2",
"babel-plugin-transform-es3-member-expression-literals": "6.22.0",
"babel-plugin-transform-es3-property-literals": "6.22.0",
"babel-plugin-uglify": "1.0.2",
"babel-preset-env": "1.6.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.16.0",
"babelify": "7.2.0",
"browserify": "11.0.1",
"bufferutil": "4.0.3",
"chai": "3.5.0",
"coveralls": "2.11.3",
"eslint": "3.17.1",
"vaporyjs-abi": "0.6.6",
"vaporyjs-stub-rpc-server": "2.1.6",
"genversion": "2.0.1",
"istanbul": "0.4.5",
"mkdirp": "^0.5.1",
"mocha": "3.2.0",
"proxyquire": "1.7.11",
"redux-thunk": "2.2.0",
"uglify-js": "2.6.1",
"utf-8-validate": "5.0.4",
"ws": "2.0.3"
},
"optionalDependencies": {
"request": "2.67.0",
"websocket": "1.0.23"
},
"browser": {
"request": false,
"websocket": false
}
}