-
Notifications
You must be signed in to change notification settings - Fork 103
/
package.json
36 lines (36 loc) · 893 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
{
"name": "crawler-google-places",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"test-local": "mocha --file ./test/crawler.local.js",
"test-platform": "mocha --file ./test/crawler.platform.js",
"start": "node ./src/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drobnikj/crawler-google-places.git"
},
"keywords": [
"crawler",
"google",
"places"
],
"author": "Jakub Drobnik <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/drobnikj/crawler-google-places/issues"
},
"homepage": "https://github.com/drobnikj/crawler-google-places#readme",
"dependencies": {
"apify": "^0.9.13",
"request": "^2.88.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.2.0",
"write-json": "^3.0.1"
}
}