-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.17 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
{
"name": "million-dollar-ether-homepage",
"version": "0.0.1",
"description": "Blockchain Manchester Million Dollor Home Page Example",
"main": "truffle.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "standard && truffle test",
"lint": "standard --fix",
"deploy": "truffle migrate --reset"
},
"author": "James Morgan <[email protected]> (htp://github.com/jamesmorgan)",
"license": "MIT",
"keywords": [
"ethereum",
"blockchain manchester",
"million dollar home page",
"truffle"
],
"bugs": {
"url": "https://github.com/jamesmorgan/million-dollar-ether-homepage/issues"
},
"homepage": "https://github.com/jamesmorgan/million-dollar-ether-homepage#readme",
"dependencies": {
"truffle-hdwallet-provider": "0.0.3"
},
"devDependencies": {
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-standard": "^3.0.1",
"lodash": "^4.17.4",
"standard": "^10.0.3"
},
"standard": {
"globals": [
"assert",
"it",
"before",
"beforeEach",
"artifacts",
"contract",
"web3"
]
}
}