-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 906 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
39
40
{
"name": "compendiovicorum-crawler",
"version": "0.1.2",
"description": "A crawler that reads all the 'comune' info from italian Wikipedia.",
"repository": "CompendioVicorum/compendiovicorum-crawler",
"main": "app.js",
"dependencies": {
"async": "^3.2.2",
"cheerio": "^0.22.0",
"mongodb": "^3.1.13",
"nodemw": "^0.14.0",
"snyk": "^1.317.0",
"voca": "^1.4.0"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^7.1.2",
"standard": "*"
},
"author": {
"name": "Davide Pastore",
"email": "[email protected]"
},
"engine": "node >= 0.10",
"files": [
"LICENSE",
"README.md",
"app.js",
"config.js",
"utils.js"
],
"license": "GPL-2.0",
"scripts": {
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect",
"test": "standard && mocha",
"standard-check": "standard"
},
"snyk": true
}