-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.61 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
{
"name": "transformap-data-service",
"version": "1.1.0",
"description": "Here you find a Node.js daemon to serve the public TransforMap web service.",
"readme": "Please consult README.md",
"main": "api.js",
"scripts": {
"test": "mocha",
"integration": "mocha test/integration",
"prestart": "node ./db/prestart.js",
"start": "node api.js",
"watch": "supervisor -w api.js,server -- api.js",
"lint": "./node_modules/standard/bin/cmd.js api.js server/**/*js test/**/*js db/**/*js",
"fire-emergency-button": "./scripts/fire"
},
"repository": {
"type": "git",
"url": "https://lab.allmende.io/transformap/api.git"
},
"keywords": [
"transition",
"map",
"commons"
],
"author": "transformap",
"license": "AGPL-3.0",
"dependencies": {
"bluebird": "^3.5.1",
"bluereq": "^1.0.0",
"body-parser": "^1.18.2",
"config": "^1.29.2",
"cookie": "^0.3.1",
"cookie-parser": "^1.4.3",
"cookie-session": "^1.3.0",
"couch-init2": "^2.1.8",
"errorhandler": "^1.5.0",
"express": "^4.16.2",
"express-session": "^1.15.5",
"geojson-tools": "^0.2.1",
"inv-loggers": "^3.1.1",
"lodash": "^4.3.0",
"method-override": "^2.3.10",
"morgan": "^1.9.0",
"nano-blue": "^0.3.0",
"passport": "^0.3.2",
"passport-http": "^0.3.0",
"passport-oauth": "^1.0.0",
"passport-openid": "^0.4.0",
"uuid": "^2.0.1"
},
"devDependencies": {
"git-hooks": "^1.1.9",
"mocha": "^2.4.5",
"should": "^8.2.2",
"standard": "^6.0.4",
"supervisor": "^0.9.1"
},
"engines": {
"node": "^4.2.1",
"npm": "^2.14.7"
}
}