-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
66 lines (66 loc) · 1.98 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
{
"name": "volca-core",
"version": "0.4.0",
"description": "Core Javascript Volca library",
"main": "lib/volca-core.js",
"scripts": {
"build": "webpack --env dev && webpack --env build",
"dev": "webpack --progress --colors --watch --env dev",
"test": "mocha --require babel-core/register --require idempotent-babel-polyfill --colors ./test/*.spec.js",
"test:watch": "mocha --require babel-core/register --require idempotent-babel-polyfill --colors -w ./test/*.spec.js",
"lint": "eslint src/"
},
"repository": {
"type": "git",
"url": "https://github.com/Eth2io/eth2air-core.git"
},
"keywords": [
"javascript",
"ethereum",
"dapp",
"web"
],
"license": "GPL",
"bugs": {
"url": "https://github.com/Eth2io/eth2air-core/issues"
},
"homepage": "https://github.com/Eth2io/eth2air-core",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.5",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"eslint": "^4.13.1",
"eslint-config-standard": "^11.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^4.0.1",
"node-fetch": "^2.1.2",
"webpack": "^3.10.0",
"yargs": "^10.0.3"
},
"dependencies": {
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"bluebird": "^3.5.1",
"ethereumjs-tx": "^1.3.3",
"ethereumjs-util": "^5.1.2",
"ethereumjs-wallet": "^0.6.0",
"idempotent-babel-polyfill": "^0.1.1",
"querystring": "^0.2.0",
"solidity-sha3": "^0.4.1",
"uuid": "^3.2.1",
"web-utils": "^1.0.0",
"web3": "^0.20.1",
"web3-utils": "^1.0.0-beta.35"
}
}