-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
61 lines (61 loc) · 1.67 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
{
"name": "security-token",
"version": "1.0.0",
"description": "Security erc20 compatible token",
"scripts": {
"dist": "truffle-flattener ./contracts/SecurityToken.sol > dist.sol",
"test": "scripts/test.sh",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:sol": "solium -d .",
"lint:sol:fix": "solium -d . --fix",
"lint:all": "npm run lint && npm run lint:sol",
"lint:all:fix": "npm run lint:fix && npm run lint:sol:fix",
"console": "truffle console",
"coverage": "scripts/coverage.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BANKEX/security-token.git"
},
"bugs": {
"url": "https://github.com/BANKEX/security-token/issues"
},
"homepage": "https://github.com/BANKEX/security-token#readme",
"keywords": [
"solidity",
"ethereum",
"smart",
"contracts",
"security",
"token"
],
"author": "",
"license": "MIT",
"devDependencies": {
"coveralls": "^2.13.1",
"eslint": "^4.11.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"ethereumjs-testrpc": "^6.0.1",
"ethereumjs-util": "^5.1.2",
"openzeppelin-solidity": "2.1.1",
"solc": "0.5.2",
"solidity-coverage": "^0.5.11",
"solium": "^1.1.2",
"truffle": "^5.0.1"
},
"dependencies": {
"args-parser": "^1.1.0",
"bip39": "^2.5.0",
"dotenv": "^6.2.0",
"ethereumjs-wallet": "^0.6.3",
"ethjs-abi": "^0.2.1",
"truffle-assertions": "^0.7.2",
"truffle-hdwallet-provider": "^1.0.0-web3one.4",
"web3": "^1.0.0-beta.46"
}
}