-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.43 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
{
"name": "tessellate-viewer",
"version": "0.1.0-alpha.2",
"description": "Tessellate viewer service.",
"author": "Maximilian Fellner <max.fellner@gmail.com>",
"license": "MIT",
"main": "dist/server.js",
"publishConfig": {
"tag": "next"
},
"bin": {
"tessellate-viewer": "./bin/tessellate-viewer"
},
"engines": {
"node": ">=v7.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/zalando-incubator/tessellate.git"
},
"scripts": {
"clean": "rimraf dist/*",
"dist": "babel -d dist src",
"start": "DEBUG=tessellate-viewer:* babel-node src/server.js",
"lint": "eslint src static test",
"test": "npm run lint && NODE_ENV=test jest --coverage",
"flow-typed-install": "rimraf flow-typed/npm && flow-typed install -o",
"prepublishOnly": "npm run clean && npm run dist"
},
"dependencies": {
"debug": "3.0.1",
"ejs": "2.5.7",
"js-yaml": "3.10.0",
"koa": "2.3.0",
"koa-morgan": "1.0.1",
"koa-router": "7.2.1",
"koa-static": "4.0.1",
"nconf": "0.8.4",
"request": "2.81.0",
"request-promise-native": "1.0.4",
"thenify": "3.3.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"eslint": "4.6.1",
"flow-bin": "0.54.1",
"flow-typed": "2.1.5",
"jest": "21.2.1",
"rimraf": "2.6.2",
"supertest": "3.0.0"
},
"jest": {
"coverageReporters": [
"json",
"lcov",
"html",
"text"
]
}
}