-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 988 Bytes
/
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
{
"name": "kcda-scrape",
"version": "1.0.0",
"description": "Scrape Kingborough Council Development Applications",
"main": "scraper.js",
"engines": {
"node": "16.x"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon --exec \"npm run tsc && npm run start\"",
"tsc": "tsc",
"start": "node scraper.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markdon/kcda-scrape.git"
},
"author": "Mark Donnellon",
"license": "MIT",
"bugs": {
"url": "https://github.com/markdon/kcda-scrape/issues"
},
"homepage": "https://github.com/markdon/kcda-scrape#readme",
"devDependencies": {
"@types/luxon": "^3.3.2",
"@types/request-promise": "^4.1.49",
"nodemon": "^3.0.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@tsconfig/node16": "^16.1.1",
"cheerio": "^1.0.0-rc.12",
"luxon": "^3.4.3",
"request-promise": "^4.2.6",
"sqlite3": "^5.1.6"
}
}