forked from pelias-deprecated/document-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.28 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": "pelias-document-service",
"version": "0.0.0-development",
"description": "Web service that synthesizes ",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "node test/test | tap-dot",
"lint": "jshint .",
"travis": "npm run check-dependencies && npm test",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"validate": "npm ls",
"check-dependencies": "node_modules/.bin/npm-check --production"
},
"author": "Mapzen",
"license": "MIT",
"engines": {
"node": ">= 4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/pelias/document-service.git"
},
"keywords": [
"pelias"
],
"dependencies": {
"express": "^4.15.4",
"lodash": "^4.17.4",
"morgan": "^1.8.2",
"pelias-model": "5.2.0",
"pelias-wof-admin-lookup": "4.4.1",
"through2": "^2.0.3"
},
"devDependencies": {
"npm-check": "git://github.com/orangejulius/npm-check.git#disable-update-check",
"pelias-mock-logger": "1.2.0",
"proxyquire": "^1.8.0",
"superagent": "^3.5.2",
"tap-dot": "^1.0.5",
"tape": "^4.8.0",
"temp": "^0.8.3",
"semantic-release": "^8.0.0"
},
"pre-commit": [
"lint",
"validate",
"test",
"check-dependencies"
]
}