-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.12 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
{
"name": "erc20-tokens",
"version": "0.0.1",
"description": "Ethereum Token Contracts",
"main": "truffle.js",
"directories": {
"test": "test"
},
"scripts": {
"compile": "truffle compile",
"test": "standard && truffle test",
"lint": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ConsenSys/Tokens.git"
},
"keywords": [
"ethereum"
],
"authors": [
"Simon de la Rouviere <[email protected]>",
"Joseph Chow <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ConsenSys/Tokens/issues"
},
"homepage": "https://github.com/ConsenSys/Tokens#readme",
"dependencies": {
"truffle": "4.0.1",
"truffle-hdwallet-provider": "0.0.3"
},
"devDependencies": {
"eslint-plugin-import": "2.7.0",
"eslint-plugin-node": "5.1.0",
"eslint-plugin-react": "7.1.0",
"eslint-plugin-standard": "3.0.1",
"standard": "10.0.2"
},
"standard": {
"globals": [
"assert",
"it",
"before",
"beforeEach",
"artifacts",
"contract",
"web3"
]
}
}