This repository has been archived by the owner on Nov 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.69 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": "@democracy-deutschland/bt-named-polls",
"version": "1.0.0",
"description": "scraper for the german \"Bundestag\" (Namentliche Abstimmungen)",
"main": "distribution/scraper.js",
"author": "Manuel Ruck",
"license": "Apache-2.0",
"bin": {
"bt-agenda": "distribution/cli.js"
},
"scripts": {
"start": "babel-node src/cli.js",
"dev": "babel-node src/cli.js",
"lint": "eslint ./src",
"build": "babel src --out-dir distribution",
"prepare": "npm run build",
"requesttest": "babel-node src/DipBrowser.js"
},
"dependencies": {
"chalk": "^2.3.1",
"colors": "^1.1.2",
"commander": "^2.13.0",
"fs-extra": "^5.0.0",
"inquirer": "^5.0.1",
"jsonfile": "^4.0.0",
"lodash": "^4.17.5",
"log": "^1.4.0",
"node-gyp": "^3.6.2",
"pretty-ms": "^3.1.0",
"request": "^2.83.0",
"request-cookies": "^1.1.0",
"striptags": "^3.1.1",
"x2js": "^3.1.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"eslint": "^4.17.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"prettier-eslint": "^8.8.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/demokratie-live/dip21-scraper.git"
},
"keywords": [
"scraper",
"bundestag",
"law"
],
"bugs": {
"url": "https://github.com/demokratie-live/dip21-scraper/issues"
},
"homepage": "https://github.com/demokratie-live/dip21-scraper#readme"
}