-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.15 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.15 KB
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
{
"name": "maphubs-tileserver",
"version": "0.12.1",
"description": "",
"main": "app.js",
"scripts": {
"eslint": "node_modules/eslint/bin/eslint.js",
"start": "DEBUG=*,-express:*,-babel,-morgan,-pool2,-knex:* node app.js",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -m \"update changelog\" && git push",
"preversion": "",
"version": "",
"postversion": "git push && git push --tags && npm run changelog",
"deploy-patch": "npm version patch --force -m \"version %s\"",
"deploy-minor": "npm version minor --force -m \"version %s\"",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect",
"prepare": "npm run snyk-protect"
},
"author": "Kristofor Carle <kris@maphubs.com>",
"license": "GPL-3.0",
"dependencies": {
"@mapbox/tilelive": "6.0.0",
"@mapbox/tilelive-bridge": "3.1.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"bluebird": "^3.5.3",
"compression": "1.7.3",
"connect-session-knex": "^1.4.0",
"cookie-parser": "1.4.3",
"debug": "^4.0.1",
"express": "^4.16.3",
"express-session": "^1.15.5",
"knex": "^0.16.2",
"lockfile": "1.0.4",
"lodash.find": "4.6.0",
"mapnik": "^4.0.2",
"mkdirp": "0.5.1",
"morgan": "^1.8.2",
"passport": "^0.4.0",
"pg": "^7.4.3",
"pg-native": "^3.0.0",
"raven": "^2.6.1",
"response-time": "2.3.2",
"snyk": "^1.83.0",
"tilelive-file": "0.0.3",
"winston": "^3.1.0",
"winston-daily-rotate-file": "^3.3.3",
"xml": "1.0.1"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.6.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-unicorn": "^6.0.1",
"flow-bin": "^0.89.0"
},
"snyk": true
}