forked from maticnetwork/tokenized-pos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.79 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
{
"name": "tokenized-pos",
"version": "0.0.1-beta.1",
"description": "",
"main": "index.js",
"private": true,
"scripts": {
"testrpc": "ganache-cli",
"build": "embark build",
"embark:test": "embark test",
"lint": "npm run lint:sol && npm run lint:js",
"lint:js": "eslint src/**/*.js test/**/*.js",
"lint:sol:fix": "solium -d contracts/ --fix",
"lint:sol": "solium -d contracts/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maticnetwork/tokenized-pos.git"
},
"author": "Jaynti Kanani <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/maticnetwork/tokenized-pos/issues"
},
"homepage": "https://github.com/maticnetwork/tokenized-pos#readme",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/register": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"bip39": "^2.5.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"eslint": "^5.8.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eth-gas-reporter": "^0.1.12",
"eth-sig-util": "^1.4.2",
"ethereumjs-wallet": "^0.6.2",
"ethers": "^4.0.7",
"ganache-cli": "^6.1.8",
"husky": "^1.1.3",
"lint-staged": "^8.0.4",
"mocha": "^5.2.0",
"rimraf": "^2.6.2",
"safe-buffer": "^5.1.2",
"solium": "^1.1.8",
"truffle": "^4.1.14",
"web3": "^1.0.0-beta.36"
},
"dependencies": {
"@babel/polyfill": "7.0.0",
"@babel/runtime": "^7.1.2",
"openzeppelin-solidity": "^2.0.0"
}
}