-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.44 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
{
"name": "path-protocol",
"version": "0.1.1",
"description": "The PATH protocol",
"main": "truffle.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "truffle test",
"eslint": "./node_modules/.bin/eslint ./test",
"coverage": "./node_modules/.bin/solidity-coverage",
"coverage-ui": "./node_modules/.bin/solidity-coverage && xdg-open ./coverage/index.html",
"build-api": "node scripts/build-api.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/path-foundation/path-protocol/path-protocol.git"
},
"author": "",
"license": "ISC",
"homepage": "https://github.com/path-foundation/path-protocol#path-protocol--",
"dependencies": {
"bn.js": "^4.11.8",
"elliptic": "^6.4.0",
"eth-crypto": "^1.2.3",
"ethereumjs-abi": "^0.6.5",
"js-sha256": "^0.9.0",
"js-sha3": "^0.8.0",
"mustache": "^3.0.0",
"shelljs": "^0.8.2",
"truffle-contract": "^4.0.24",
"web3": "^1.0.0-beta.55"
},
"devDependencies": {
"bip39": "^2.5.0",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"mocha": "^5.2.0",
"solidity-coverage": "^0.6.3",
"truffle-core": "^5.0.27",
"truffle-hdwallet-provider": "0.0.6",
"truffle-legacy-system": "^1.0.7",
"truffle-environment": "^0.1.3"
}
}