-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
54 lines (54 loc) · 1.81 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
{
"name": "web3c",
"version": "2.0.5",
"description": "Confidentiality extension for Web3",
"main": "index.node.js",
"module": "index.browser.js",
"scripts": {
"build": "webpack-command --entry ./index.browser.js --output output/web3c.js",
"prepublishOnly": "rm -r output/* && webpack-command --entry ./index.browser.js --output output/web3c.js",
"watch": "webpack-command --watch --entry ./index.browser.js --output output/web3c.js",
"test": "nyc --reporter=html --reporter=text mocha && npm run-script lint",
"test:browser": "mocha init output/ && webpack-command --mode development --entry ./tests.js --output output/tests.js",
"test:gateway": "cd test/ && truffle compile && npm test && cd ../",
"lint": "eslint *.js crypto/ demo/ test/ web3c/",
"lint:fix": "eslint *.js crypto/ demo/ test/ web3c/ --fix",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oasislabs/web3c.js.git"
},
"keywords": [
"web3",
"web3c",
"ekiden"
],
"author": "Oasis Labs Inc. <[email protected]>",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/oasislabs/web3c.js/issues"
},
"homepage": "https://github.com/oasislabs/web3c.js#readme",
"devDependencies": {
"@babel/core": "^7.3.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"copy-webpack-plugin": "^4.6.0",
"coveralls": "^3.0.2",
"eslint": "^5.14.0",
"ethers": "^4.0.25",
"mocha": "^5.2.0",
"nyc": "^13.3.0",
"truffle-hdwallet-provider": "1.0.2",
"tweetnacl": "^1.0.1",
"webpack": "^4.29.4",
"webpack-command": "^0.4.2"
},
"dependencies": {
"js-sha512": "^0.8.0",
"node-localstorage": "^1.3.1",
"web3": "1.0.0-beta.37",
"component-emitter": "1.2.1"
}
}