-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.25 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.25 KB
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
{
"name": "self-token",
"version": "1.0.0",
"description": "Smart Contracts of SELF Token",
"scripts": {
"test": "scripts/test.sh",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:sol": "solium -d .",
"lint:sol:fix": "solium -d . --fix",
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:js:fix && npm run lint:sol:fix",
"console": "truffle console",
"coverage": "scripts/coverage.sh"
},
"author": "Roger-Wu",
"license": "ISC",
"homepage": "https://selftoken.co/",
"dependencies": {
"chai-as-promised": "^7.1.1",
"erc820": "0.0.22",
"openzeppelin-solidity": "1.12.0",
"web3": "^1.0.0-beta.36"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-bignumber": "^2.0.2",
"coveralls": "^3.0.2",
"dotenv": "^6.1.0",
"eslint": "^5.7.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"ethjs-abi": "^0.2.1",
"ganache-cli": "^6.1.8",
"solidity-coverage": "^0.5.11",
"solium": "^1.1.8",
"truffle": "^4.1.14",
"truffle-hdwallet-provider": "0.0.6",
"web3-utils": "^1.0.0-beta.36"
}
}