This repository has been archived by the owner on Aug 8, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
51 lines (51 loc) · 1.53 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
{
"name": "ethereumjs-connect",
"version": "4.5.2",
"description": "Basic Ethereum connection tasks",
"author": "The Augur Developers <[email protected]>",
"license": "MIT",
"main": "src/index.js",
"scripts": {
"build": "browserify ./exports.js > ./dist/ethereumjs-connect.js && uglifyjs ./dist/ethereumjs-connect.js > ./dist/ethereumjs-connect.min.js",
"build:tests": "browserify test/create-*.js test/set*.js > test/browser/bundle.js",
"lint": "eslint src test/*.js",
"test": "mocha test/*.js",
"link": "npm link ethrpc",
"coverage": "istanbul cover --include-all-sources --root ./src ./node_modules/mocha/bin/_mocha test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereumjs/ethereumjs-connect.git"
},
"keywords": [
"Ethereum",
"network",
"connection"
],
"bugs": {
"url": "https://github.com/ethereumjs/ethereumjs-connect/issues"
},
"homepage": "https://github.com/ethereumjs/ethereumjs-connect#readme",
"dependencies": {
"async": "1.5.2",
"clone": "2.1.1",
"ethrpc": "5.1.0"
},
"devDependencies": {
"babel-cli": "6.22.2",
"babel-preset-env": "1.6.0",
"babel-preset-stage-0": "6.16.0",
"browserify": "12.0.1",
"bufferutil": "3.0.0",
"chai": "3.5.0",
"coveralls": "2.11.3",
"eslint": "3.17.1",
"ethereumjs-stub-rpc-server": "2.1.6",
"immutable-delete": "1.0.1",
"istanbul": "0.4.5",
"mocha": "3.2.0",
"proxyquire": "1.7.11",
"uglify-js": "2.6.1",
"utf-8-validate": "3.0.1"
}
}