forked from JoshKaufman/blockapps-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "blockapps-js",
"version": "2.2.5",
"description": "Interface to the Ethereum blockchain providing contract creation and transactions, state inspection, and dApp registration and management",
"keywords": [
"ethereum",
"blockchain",
"blockapps",
"dapp"
],
"main" : "index.js",
"homepage": "https://github.com/blockapps/blockapps-js",
"bugs": {
"url": "https://github.com/blockapps/blockapps-js/issues",
"email": "ryan@blockapps.net"
},
"license": "MIT",
"author": {
"name": "Ryan Reich",
"email": "ryan@blockapps.net",
"url": "https://github.com/ryanreich"
},
"contributors": [
"BlockApps team (http://blockapps.net)",
"Prashant Pawar <prashantpawar@gmail.com>"
],
"files": [
"js/",
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/blockapps/blockapps-js/blockapps-js.git"
},
"dependencies": {
"big-integer": "",
"bignumber.js": "",
"bluebird": "^2.9.34",
"browser-request": "",
"crypto-js": ">=3.1",
"enum": "",
"ethereumjs-tx": "0.6.7",
"ethereumjs-util": "",
"request": "",
"secp256k1-browserify": "",
"string": ""
},
"engines": {
"node": ">= 0.12.5"
},
"devDependencies": {
"browserify": "^11.0.1",
"chai": "^3.2.0",
"chai-as-promised": "",
"coveralls": "^2.11.4",
"gulp": "^3.9.0",
"gulp-jshint": "^1.11.2",
"gulp-mocha": "^2.1.3",
"istanbul": "^0.3.19",
"minify" : "",
"mocha": "^2.2.5",
"mocha-lcov-reporter": "0.0.2",
"nock": "^2.10.0"
},
"scripts": {
"build": "npm run test && npm run browserify && npm run minify",
"browserify": "browserify -r .:blockapps-js -r bluebird -d -o blockapps.js",
"minify": "minify blockapps.js > blockapps-min.js",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"test": "mocha"
},
"browser" : {
"request" : "browser-request"
}
}