-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
70 lines (70 loc) · 1.88 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@etalab/api-geo",
"version": "2.4.0",
"description": "Interroger les référentiels géographiques plus facilement",
"repository": {
"type": "git",
"url": "git://github.com/etalab/api-geo.git"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@sentry/node": "^7.37.2",
"@sentry/tracing": "^7.37.2",
"@turf/bbox": "^6.5.0",
"@turf/bbox-polygon": "^6.5.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"lodash": "^4.17.11",
"lunr": "1.0.0",
"morgan": "^1.9.1",
"rbush": "^2.0.1"
},
"devDependencies": {
"@etalab/decoupage-administratif": "4.0.0",
"@turf/area": "^6.0.1",
"@turf/bbox": "^6.5.0",
"@turf/bbox-polygon": "^6.5.0",
"@turf/point-on-feature": "^6.0.2",
"@turf/truncate": "^6.0.1",
"benchmark": "^2.1.0",
"codecov": "^3.5.0",
"debug": "^4.1.1",
"expect.js": "^0.3.1",
"mocha": "^5.2.0",
"nyc": "^13.3.0",
"supertest": "^3.4.2",
"xo": "^0.24.0"
},
"scripts": {
"bench": "DEBUG=store,bench node bench",
"lint": "xo",
"start": "node --max_old_space_size=2048 server",
"test": "NODE_OPTIONS=--max_old_space_size=2048 nyc mocha --exit --timeout 5000",
"download-sources": "./download-sources.sh",
"build-only": "node --max_old_space_size=4096 build",
"build": "yarn download-sources && yarn build-only"
},
"xo": {
"semicolon": false,
"space": 2,
"rules": {
"no-path-concat": "off",
"unicorn/filename-case": "off",
"import/order": "off",
"no-return-assign": "off",
"ava/no-import-test-files": "off"
},
"ignores": "test/*.js"
},
"engines": {
"node": ">= 10"
},
"contributors": [
"Jérôme Desboeufs <[email protected]>",
"Théophile Merlière <[email protected]>",
"Thomas Gratier <[email protected]>"
],
"license": "MIT"
}