-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.11 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@reindeer/reindeer-token",
"version": "1.0.0",
"description": "reindeer token",
"main": "truffle.js",
"directories": {
"test": "test",
"contracts": "contracts"
},
"engines": {
"node": "9.6.1",
"npm": "5.6.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"eslint": "^4.18.1",
"eslint-config-prettier": "^2.8.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-mocha": "^4.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"faker": "^4.1.0",
"fs": "^0.0.1-security",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"moment": "^2.22.1",
"prettier": "^1.11.0",
"solhint": "^1.1.10",
"solidity-coverage": "^0.4.10",
"truffle": "^4.1.0"
},
"scripts": {
"precommit": "lint-staged",
"prettier": "prettier --single-quote --no-semi --write '**/*.{js,json}'",
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"test": "truffle test",
"test:cov": "solidity-coverage",
"lint:sol": "solhint contracts/*.sol",
"compile": "rm -rf ./build/* && truffle compile",
"clean": "rm -rf ./build/* && yarn truffle networks --clean",
"deploy:dev": "yarn truffle compile && truffle deploy --network private",
"deploy:ropsten": "yarn truffle compile && truffle deploy --network ropsten",
"deploy:live": "yarn truffle compile && truffle deploy --network live"
},
"lint-staged": {
"**/*.{js,json}": [
"prettier --single-quote --no-semi --write",
"git add"
]
},
"repository": {
"type": "git",
"url": ""
},
"keywords": [
"reindeer"
],
"author": "Shintaro Hara <sh@reindeer.tech>",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/reindeer-project/reindeer-token/issues"
},
"homepage": "https://github.com/reindeer-project/reindeer-token#readme",
"dependencies": {
"zeppelin-solidity": "^1.7.0"
}
}