-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
45 lines (45 loc) · 1.19 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
{
"name": "bill-scraper",
"version": "1.2.0",
"description": "A JavaScript API to scrape and analyze bills in Congress.",
"main": "index.js",
"scripts": {
"test": "mocha --recursive && npm run lint",
"docs": "jsdoc lib/**/*.js",
"lint": "jshint lib/**/*.js && jshint index.js && jshint lib/**/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeffreyshen19/BillScraper.js.git"
},
"keywords": [
"javascript",
"civic",
"engagement",
"politics"
],
"author": "Jeffrey Shen <[email protected]> (http://jeffreyshen.com)",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/jeffreyshen19/BillScraper.js/issues"
},
"homepage": "https://github.com/jeffreyshen19/BillScraper.js#readme",
"devDependencies": {
"chai": "^4.1.2",
"codecov": "^3.0.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.5.5",
"jshint": "^2.9.5",
"mocha": "^5.0.0"
},
"dependencies": {
"htmlparser": "^1.7.7",
"mongoose": "^5.0.4",
"nlcst-to-string": "^2.0.1",
"request": "^2.83.0",
"retext": "^5.0.0",
"retext-keywords": "^4.0.1",
"soupselect": "^0.2.0",
"xml2js": "^0.4.19"
}
}