-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 947 Bytes
/
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
{
"name": "elvis-es-api-plugin",
"private": true,
"version": "1.0.0",
"license": "MIT",
"author": {
"name": "WoodWing - Jaap van Blaaderen",
"url": "https://www.woodwing.com"
},
"repository": {
"type": "git",
"url": "https://github.com/WoodWing/elvis-stats.git"
},
"engineStrict": true,
"engines": {
"node": ">= 6.9.0"
},
"scripts": {
"start": "ts-node src/server.ts",
"build": "tsc -p tsconfig.release.json",
"watch": "tsc -w -p tsconfig.release.json"
},
"devDependencies": {
"@types/elasticsearch": "^5.0.28",
"@types/express": "^4.16.0",
"@types/node": "^8.10.37",
"@types/request": "2.0.0",
"typescript": "^2.9.2"
},
"dependencies": {
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"console-stamp": "^0.2.7",
"elasticsearch": "^15.2.0",
"express": "^4.16.4",
"request": "^2.88.0",
"ts-node": "^3.3.0",
"tslib": "~1.7.1"
}
}