-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.27 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
74
75
76
77
78
79
80
{
"name": "vault-sc",
"version": "1.0.4",
"description": "Smart Contracts for Vault",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"start:blockchain:client": ". ./scripts/start-blockchain.sh",
"stop:blockchain:client": ". ./scripts/stop-blockchain.sh",
"pretest": "npm run start:blockchain:client",
"test": "truffle migrate --reset --compile-all && truffle test --network development",
"posttest": "npm run stop:blockchain:client",
"precommit": "lint-staged && solhint \"contracts/*.sol\"",
"coverage": "truffle run coverage",
"prettier": "prettier --write \"**/*.{js,json,css,md}\"",
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"lint:sol": "prettier --write contracts/**/*.sol",
"lint:js": "eslint --fix test/**/*.js scripts/**/*.js"
},
"lint-staged": {
"*.js": [
"npm run lint:js --",
"prettier --write **/*.js",
"git add"
],
"*.sol": [
"npm run lint:sol --",
"git add"
],
"*.{json,css}": [
"prettier --write **/*.json",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"files": [
"contracts",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/chaitanyapotti/Vault-Sc.git"
},
"author": "Chaitanya Potti",
"license": "MIT",
"bugs": {
"url": "https://github.com/chaitanyapotti/Vault-Sc/issues"
},
"homepage": "https://github.com/chaitanyapotti/Vault-Sc#readme",
"dependencies": {
"electusaction": "^2.5.6",
"truffle-hdwallet-provider": "^1.0.17"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-mocha": "^6.2.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.0.2",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"prettier-plugin-solidity": "^1.0.0-alpha.35",
"solhint": "^2.3.0",
"solhint-plugin-prettier": "0.0.3",
"solidity-coverage": "^0.7.0",
"truffle": "^5.1.6",
"truffle-assertions": "^0.9.2"
}
}