-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.2 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
{
"name": "p-monitor",
"version": "0.0.1",
"description": "",
"main": "tracker.js",
"scripts": {
"build": "babel src -s -D -d dist --presets es2015,stage-0",
"start": "node dist",
"build-docker": "npm run build && docker build -t p-monitor .",
"lint": "eslint src",
"test": "ava"
},
"repository": {
"type": "git",
"url": "https://gitlab.dldl.fr/p-project/p-monitor.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-plugin-transform-runtime": "^6.23.0",
"babel-runtime": "^6.23.0",
"bittorrent-tracker": "^8.0.13",
"body-parser": "^1.15.2",
"express": "^4.14.0",
"express-validation": "^1.0.1",
"helmet": "^3.3.0",
"joi": "^10.1.0",
"transform-runtime": "^0.0.0",
"ws": "^2.2.3"
},
"devDependencies": {
"ava": "^0.19.1",
"babel": "^6.5.2",
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.13.1",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
}
}