-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
91 lines (91 loc) · 2.82 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
89
90
91
{
"name": "edge-currency-ethereum",
"version": "0.11.1",
"description": "Edge Ethereum currency plugin",
"homepage": "https://edgesecure.co/",
"license": "SEE LICENSE IN LICENSE",
"author": "Edge (Airbitz, Inc)",
"contributors": [
"Paul Puey <[email protected]>"
],
"files": [
"CHANGELOG.md",
"README.md",
"lib/*"
],
"main": "./lib/indexEthereum.js",
"module": "./lib/indexEthereum.es.js",
"repository": {
"type": "git",
"url": "[email protected]:Airbitz/edge-currency-ethereum.git"
},
"scripts": {
"build": "npm run webpack && npm run rollup && npm run build:flow",
"build:clean": "rimraf lib",
"build:flow": "flow-copy-source -v -i '**/test/**' src lib",
"build:test": "rollup -c rollup.config.test.js",
"precommit": "npm run build && npm test",
"flow": "flow status",
"format": "prettier-eslint --write '*.js' 'src/**/*.js' 'test/**/*.js'",
"lint": "eslint '*.js' 'src/**/*.js' 'test/**/*.js' && npm run flow",
"lint:fix": "eslint --fix '*.js' 'src/**/*.js' 'test/**/*.js' && npm run flow",
"prepare": "npm run build",
"rollup": "rollup -c",
"pretest": "npm run build:test && npm run lint",
"test": "nyc mocha --require source-map-support/register build/tests.cjs.js",
"posttest": "nyc report --reporter=html",
"updot": "updot",
"webpack": "webpack"
},
"dependencies": {
"biggystring": "^3.0.0",
"bn.js": "^4.11.7",
"buffer": "^5.0.6",
"ethereumjs-abi": "^0.6.4",
"ethereumjs-tx": "^1.3.3",
"ethereumjs-util": "^5.1.2",
"ethereumjs-wallet": "git://github.com/Airbitz/ethereumjs-wallet.git#6157e11ea10a734fbe55f4c7ea542780975b60ef",
"jsonschema": "^1.1.1",
"sprintf-js": "^1.1.1",
"uri-js": "^3.0.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-flow": "^6.23.0",
"chai": "^4.1.2",
"chai-as-promised": "^6.0.0",
"edge-core-js": "^0.9.15",
"eslint": "4.5.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^3.0.1",
"flow-bin": "^0.82.0",
"flow-copy-source": "^1.2.1",
"husky": "^0.14.3",
"json-loader": "^0.5.4",
"mocha": "^4.0.0",
"node-fetch": "^1.7.3",
"nyc": "^11.3.0",
"prettier-eslint-cli": "^4.4.0",
"request": "^2.83.0",
"rimraf": "^2.6.1",
"rollup": "0.48.0",
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-multi-entry": "^2.0.2",
"updot": "^1.1.4",
"webpack": "^1.14.0"
},
"standard": {
"parser": "babel-eslint",
"plugins": [
"flowtype"
]
}
}