forked from geochicasosm/data_scripts_lascallesdelasmujeres
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 loc) · 1.09 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
{
"name": "lascallesdelasmujeres_data_scripts",
"version": "1.0.0",
"description": "Scripts to generate data for the geochicasOSM project, #LasCallesDeLasMujeres",
"main": "./scripts/index.js",
"scripts": {
"initial-step": "node ./scripts/index",
"wikipedia-step": "node ./scripts/apply_wikipedia.js",
"final-step": "node ./scripts/parse_final.js",
"lint": "eslint --fix scripts/**"
},
"author": "Jessica Sena",
"license": "MIT",
"dependencies": {
"@turf/bbox": "^6.0.1",
"@turf/bbox-polygon": "^6.0.1",
"@turf/boolean-contains": "^6.0.1",
"@turf/center-of-mass": "^6.0.1",
"@turf/flatten": "^5.1.5",
"boundingbox-split": "^1.0.1",
"fs": "0.0.1-security",
"fuse.js": "^3.2.0",
"line-by-line": "^0.1.6",
"query-overpass": "^1.5.5",
"split": "^1.0.0",
"yargs": "^11.0.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}