-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.08 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
{
"name": "path-protocol-js-api",
"version": "0.0.1",
"description": "JavaScript api for the Path platform; provides js wrappers around solidity contracts",
"main": "index.js",
"scripts": {
"test": "mocha",
"cover": "node_modules/.bin/nyc --reporter=lcov --reporter=text-lcov mocha && open coverage/lcov-report/index.html"
},
"keywords": [
"path-platform",
"api"
],
"author": "Path Foundation",
"license": "MIT",
"files": [
"README.md",
"index.js",
"./src/"
],
"dependencies": {
"path-protocol-artifacts": "0.0.3",
"truffle-contract": "^4.0.0-beta.2",
"web3": "^1.0.0-beta.36"
},
"devDependencies": {
"bignumber.js": "^7.2.1",
"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",
"eth-crypto": "^1.2.3",
"ethereumjs-wallet": "^0.6.2",
"mocha": "^5.2.0",
"truffle-resolver": "^5.0.0-beta.2",
"nyc": "^13.1.0"
}
}