-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.3 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
{
"name": "histograph-data",
"version": "1.0.0",
"description": "Data download and conversion scripts for Histograph",
"main": "index.js",
"devDependencies": {
"jscs": "^1.10.0",
"jshint": "^2.6.0",
"tape": "^3.4.0"
},
"scripts": {
"test": "jshint index.js */*.js && jscs index.js */*.js && tape test/*.test.js"
},
"author": "Waag Society",
"license": "GPL-3.0",
"dependencies": {
"async": "^0.9.0",
"colors": "^1.1.0",
"csv": "^0.4.2",
"event-stream": "3.3.4",
"geojsonhint": "^1.0.0",
"highland": "^2.5.1",
"is-my-json-valid": "^2.10.1",
"level": "^0.19.1",
"minimist": "^1.1.1",
"ndjson": "^1.3.0",
"pg": "^4.3.0",
"pg-cursor": "^1.0.0",
"proj4": "^2.3.6",
"ramda": "^0.17.1",
"request": "^2.55.0",
"shapefile": "^0.3.0",
"sparql-client": "^0.2.0",
"urlify": "^0.3.6",
"xml2js": "^0.4.8",
"zipfile": "^0.5.7",
"histograph-config": "histograph/config",
"histograph-schemas": "histograph/schemas"
},
"jshintConfig": {
"node": true,
"globalstrict": false,
"undef": true,
"unused": true,
"noarg": true
},
"jscsConfig": {
"preset": "airbnb",
"requireCamelCaseOrUpperCaseIdentifiers": null,
"disallowMultipleVarDecl": true,
"requireMultipleVarDecl": null
}
}