-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
54 lines (54 loc) · 1.43 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
{
"name": "apicarto",
"version": "0.2.0",
"main": "index.js",
"scripts": {
"import": "grunt import",
"test": "npm run lint && npm run test-unit",
"test-unit": "NODE_ENV=test istanbul cover _mocha -- --recursive -t 10000",
"lint": "eslint controllers/**/*.js helpers/**/*/js *.js test/**/*.js lib/**/*.js",
"start": "node server | bunyan"
},
"contributors": [
"Jérôme Desboeufs <[email protected]>",
"Nabil Servais <[email protected]>",
"Vincent Sagniez <[email protected]>",
"Mickael Borne <[email protected]>"
],
"repository": "sgmap/apicarto",
"license": "AGPL-3.0",
"engines": {
"node": ">=6"
},
"dependencies": {
"@turf/truncate": "^6.0.1",
"@turf/turf": "^3.7.0",
"body-parser": "^1.14.1",
"bunyan": "^1.5.1",
"cors": "^2.7.1",
"debug": "^2.2.0",
"express": "^4.13.3",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-shell": "^1.1.2",
"handlebars": "^4.0.3",
"lodash": "^4.0",
"on-finished": "^2.3.0",
"pg": "^4.4.3",
"pg-format": "^1.0.1",
"request": "^2.65.0",
"swagger-ui": "2.1.3",
"terraformer-wkt-parser": "^1.0.1",
"uuid": "^3.0.1"
},
"devDependencies": {
"@mapbox/geojsonhint": "^2.0.0",
"eslint": "^2.2.0",
"expect.js": "^0.3.1",
"istanbul": "^0.4.1",
"mocha": "^3.2.0",
"nock": "^7.2.2",
"supertest": "^1.1.0",
"unit.js": "^2.0.0"
}
}