-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.31 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
{
"name": "birdog",
"version": "0.1.9",
"description": "A simple CLI using the ProPublica database to track the voting records of members of the US Congress.",
"main": "src/birdog",
"files": [
"./src/**"
],
"scripts": {
"test": "npx jest",
"prepublishOnly": "npm test"
},
"author": "Dylan Awalt-Conley",
"license": "ISC",
"dependencies": {
"@dawaltconley/cue": "^0.1.2",
"@dawaltconley/max-async": "^0.1.1",
"axios": "^0.21.4",
"csv-stringify": "^5.6.2",
"keytar": "^7.7.0",
"legislative-parser": "^0.2.1",
"yargs": "^17.0.1"
},
"devDependencies": {
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.4",
"eslint-plugin-node": "^11.1.0",
"jest": "^29.3.0",
"prettier": "^2.7.1"
},
"engineStrict": true,
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dawaltconley/birdog.git"
},
"bin": {
"birdog": "src/birdog",
"birddog": "src/birdog"
},
"bugs": {
"url": "https://github.com/dawaltconley/birdog/issues"
},
"homepage": "https://github.com/dawaltconley/birdog#readme",
"directories": {
"example": "examples"
},
"keywords": [
"congress",
"votes",
"bills",
"legislation",
"propublica"
]
}