-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.77 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": "DefiCollector",
"version": "0.0.1",
"description": "Collect defi positions for an address",
"main": "index.js",
"scripts": {
"build": "./scripts/compile.sh",
"compile": "npm run build",
"coverage": "scripts/coverage.sh",
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:js:fix",
"lint:js": "eslint --ignore-path .gitignore .",
"lint:js:fix": "eslint --ignore-path .gitignore . --fix",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"test": "npm run build && mocha --exit --recursive test",
"prepare": "node scripts/prepare.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bowd/deficollector.git"
},
"keywords": [
"ethereum",
"smart-contract",
"bet",
"blockchain"
],
"author": "Bogdan Dumitru @bowd",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bowd/deficollector/issues"
},
"homepage": "https://github.com/bowd/deficollector#readme",
"files": [
"/contracts/**/*.sol",
"/build/contracts/*.json",
"!/contracts/mocks",
"!/contracts/examples"
],
"devDependencies": {
"@openzeppelin/cli": "^2.7.2",
"@openzeppelin/contracts": "^2.5.0",
"@openzeppelin/test-environment": "^0.1.3",
"@openzeppelin/test-helpers": "^0.5.5",
"bn.js": "^5.1.1",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-mocha-no-only": "^1.1.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"ethereumjs-abi": "^0.6.8",
"husky": "^4.2.3",
"micromatch": "^4.0.2",
"mocha": "^7.1.1",
"solhint": "^2.3.1"
}
}