-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.68 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
{
"name": "paatos-scraper",
"version": "0.0.1",
"description": "Scraper to scrape decision data from web pages and PDF documents in Finland",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "nyc --reporter=lcov -- mocha",
"coverage": "cat ./coverage/lcov.info | coveralls",
"test-coverage": "nyc --reporter=lcov -- mocha && cat ./coverage/lcov.info | coveralls",
"test-turku": "nyc --reporter=lcov -- mocha --grep 'Turku'",
"test-espoo": "nyc --reporter=lcov -- mocha --grep 'Espoo'",
"test-tampere": "nyc --reporter=lcov -- mocha --grep 'Tampere'",
"test-mikkeli": "nyc --reporter=lcov -- mocha --grep 'Mikkeli'"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/6aika/Paatos-Scraper.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/6aika/Paatos-Scraper/issues"
},
"homepage": "https://github.com/6aika/Paatos-Scraper#readme",
"dependencies": {
"archiver": "1.3.0",
"bluebird": "^3.5.0",
"chai-fs": "^1.0.0",
"cheerio": "^0.22.0",
"command-line-args": "^4.0.2",
"command-line-usage": "^4.0.0",
"content-disposition": "^0.5.2",
"html-entities": "^1.2.1",
"isemail": "^2.2.1",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"normalize-space": "^1.0.2",
"odata-client": "^0.5.5",
"pdf2json": "^1.1.7",
"request": "^2.81.0",
"rimraf": "^2.6.1",
"sync-request": "^4.0.2",
"unzipper": "^0.8.8",
"winston": "^2.3.1"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"coveralls": "2.13.0",
"mocha": "^3.2.0",
"nock": "^9.0.13",
"nyc": "10.2.0",
"rimraf": "^2.6.1"
}
}