-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
61 lines (61 loc) · 1.56 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": "eth-mimblewimble",
"version": "0.0.1",
"description": "Mimblewimble on Ethereum with zk-SNARKs",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"postinstall": "chmod +x scripts/*",
"standard": ".\"/node_modules/.bin/standard\" test/**/*.js src/** --fix",
"ethlint": ".\"/node_modules/.bin/solium\" -d contracts --fix",
"precommit": "lint-staged && npm run test",
"test": ".\"/scripts/test_contracts.sh\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereum934/eth-mimblewimble.git"
},
"keywords": [
"mimblewimble",
"zk-SNARKs",
"ethereum"
],
"author": "Wanseob Lim <email@wanseob.com>",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/ethereum934/eth-mimblewimble/issues"
},
"homepage": "https://github.com/ethereum934/eth-mimblewimble#readme",
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-bn": "^0.1.1",
"eth-gas-reporter": "^0.2.11",
"ethlint": "^1.2.4",
"ganache-cli": "^6.7.0",
"husky": "^3.0.5",
"lint-staged": "^9.2.5",
"prettier": "^1.18.2",
"truffle": "^5.0.36"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --single-quote --write --print-width 160",
"git add"
],
"contracts/**/*.{sol}": [
"solium -d contracts/ --fix",
"git add"
]
},
"dependencies": {
"@openzeppelin/contracts": "^2.3.0"
}
}