forked from datagouv/api-geo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.42 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
{
"name": "api-communes",
"version": "1.0.0-beta",
"description": "API for French administrative units",
"repository": {
"type": "git",
"url": "git://github.com/etalab/api-communes.git"
},
"dependencies": {
"JSONStream": "^1.1.1",
"async": "^2.0.0-rc.5",
"cors": "^2.7.1",
"csv-parse": "^1.1.1",
"debug": "^2.2.0",
"express": "^4.13.4",
"iconv-lite": "^0.4.13",
"lodash": "^4.12.0",
"lunr": "^0.7.1",
"morgan": "^1.7.0",
"once": "^1.3.3",
"rbush": "^2.0.1",
"stream-array": "^1.1.2",
"through2": "^2.0.1",
"@turf/centroid": "^3.0.5",
"@turf/helpers": "^3.0.0",
"@turf/union": "^3.0.1"
},
"devDependencies": {
"benchmark": "^2.1.0",
"eslint": "^3.1.1",
"expect.js": "^0.3.1",
"istanbul": "^0.4.3",
"mocha": "^3.0",
"supertest": "^1.2.0"
},
"scripts": {
"bench": "DEBUG=store,bench node bench",
"lint": "eslint *.js lib test",
"start": "node --max_old_space_size=2048 server",
"test-unit": "istanbul cover _mocha -- test/**",
"test": "npm run lint && npm run test-unit",
"fetch-data": "./fetch_data.sh",
"integrate-data": "DEBUG=integration node integration",
"prepare-data": "npm run fetch-data && npm run integrate-data"
},
"author": "Jérôme Desboeufs <[email protected]>",
"contributors": [
"Théophile Merlière <[email protected]>"
],
"license": "MIT"
}