-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.25 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
{
"name": "state-channel",
"version": "1.0.0",
"description": "An Ethereum state-channel implementation for ERC20 bidirectional payments",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"dependencies": {
"openzeppelin-solidity": "^2.3.0",
"truffle": "^5.0.21"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-security": "^1.4.0",
"ganache-cli": "^6.4.3",
"openzeppelin-test-helpers": "^0.4.0",
"prettier": "^1.17.1",
"prettier-plugin-solidity": "^1.0.0-alpha.22",
"solhint": "^2.1.0"
},
"scripts": {
"test": "npx truffle test",
"ganache:start": "npx ganache-cli -m 'master initial share forum rhythm trick inform story obey ahead learn bean'",
"lint:js": "npx eslint --fix . && npx prettier --write .",
"lint:sol": "npx solhint --max-warning 0 \"contracts/**/*.sol\""
},
"keywords": [
"ethereum",
"state-channel",
"payment-channel",
"erc20"
],
"author": "Marcelo Morgado",
"license": "MIT"
}