forked from aracred/AraCred
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.46 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
{
"name": "aracred",
"version": "0.1.2",
"description": "Automate Calculating, Minting, and Reporting SourceCred in Aragon DAOs",
"license": "MIT",
"repository": "aracred/AraCred",
"main": "dist/index.js",
"author": {
"name": "pythonpete32",
"email": "[email protected]",
"url": "https://github.com/pythonpete32"
},
"files": [
"dist",
"src"
],
"scripts": {
"test": "jest",
"docs": "documentation build src/** -f html -o docs",
"precommit": "lint-staged",
"secrets": "node ./src/setupAragon.js",
"prepTX": "node ./src/processScores.js",
"sendTX": "node ./src/mint.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.+(js)": [
"eslint --fix",
"prettier --write",
"jest --findRelatedTests",
"git add"
]
},
"keywords": [
"Aragon",
"DAO",
"Ethereum",
"SourceCred",
"Token",
"Cryptocurrency"
],
"dependencies": {
"@aragon/test-helpers": "^2.1.0",
"@aragon/toolkit": "0.0.5",
"bignumber.js": "9.0.0",
"ethereumjs-abi": "^0.6.8",
"web3": "^1.2.5-rc.0"
},
"devDependencies": {
"documentation": "11.0.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"husky": "^4.2.3",
"jest": "24.8.0",
"lint-staged": "^10.1.2",
"prettier": "^2.0.4"
}
}