-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
51 lines (51 loc) · 1.43 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": "quarkchain-web3",
"version": "3.0.2",
"description": "QuarkChain wrapper over Ethereum web3",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"build:dist": "babel index.js quarkchain-ethereum-tx.js -d ./dist",
"run:dist": "babel index.js quarkchain-ethereum-tx.js -d ./dist && ndb dist/index.js",
"prepublishOnly": "npm run build:dist && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/QuarkChain/quarkchain-web3.js.git"
},
"keywords": [
"quarkchain",
"ethereum",
"javascript"
],
"author": "quarkchain.org",
"license": "LGPL-3.0",
"bugs": {
"url": "https://github.com/QuarkChain/quarkchain-web3.js/issues"
},
"homepage": "https://github.com/QuarkChain/quarkchain-web3.js#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"copy-webpack-plugin": "4.5.3",
"eslint": "^5.2.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"ndb": "^1.0.18",
"webpack": "^4.16.3",
"webpack-cli": "^3.1.0"
},
"dependencies": {
"ethereum-common": "0.0.18",
"ethereumjs-util": "^5.2.0",
"web3": "^0.20.3"
}
}