-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 1.93 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
81
{
"name": "aracred",
"description": "Boilerplate",
"repository": "pythonpete32/aracred-cli",
"main": "index.js",
"bin": "./dist/index.js",
"scripts": {
"test": "jest",
"coverage": "npm test -- --coverage",
"postcoverage": "open-cli coverage/lcov-report/index.html",
"lint": "eslint .",
"docs": "documentation readme src --section=API",
"postdocs": "git add README.md",
"clean": "rimraf dist",
"prebuild": "npm run docs && npm run clean",
"build": "babel src -d dist",
"prerelease": "npm run lint && npm test && npm run build",
"release": "standard-version",
"postpublish": "git push origin master --follow-tags"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"keywords": [
"aragon",
"sourcecred",
"dao",
"ethereum",
"reputation",
"token"
],
"author": {
"name": "pythonpete32",
"email": "[email protected]",
"url": "https://github.com/pythonpete32"
},
"files": [
"dist",
"src"
],
"license": "ISC",
"dependencies": {
"chalk": "^3.0.0",
"cli-table": "^0.3.1",
"execa": "^4.0.0",
"inquirer": "^7.1.0",
"json2csv": "^4.5.4",
"listr": "^0.14.3",
"neat-csv": "^5.2.0",
"ora": "^4.0.3"
},
"devDependencies": {
"@babel/cli": "7.4.4",
"@babel/core": "7.4.5",
"@babel/plugin-proposal-class-properties": "7.4.4",
"@babel/preset-env": "7.4.5",
"babel-eslint": "10.0.2",
"babel-jest": "24.8.0",
"documentation": "11.0.1",
"eslint": "6.0.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "5.0.0",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-prettier": "3.1.0",
"husky": "2.4.1",
"jest": "^25.1.0",
"lint-staged": "8.2.1",
"open-cli": "5.0.0",
"prettier": "1.18.2",
"rimraf": "2.6.3",
"standard-version": "6.0.1"
}
}