-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.67 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
52
53
54
55
{
"name": "@elium/mighty-http-layer",
"version": "4.0.2",
"homepage": "https://github.com/Elium/mighty-http-layer#readme",
"author": "Arnaud Bosc <bosc.arno@gmail.com>",
"description": "NodeJS Http layer for mighty-js",
"license": "MIT",
"scripts": {
"build": "gulp build",
"dev": "gulp dev",
"start": "npm run dev",
"pretest": "npm run build",
"test": "mocha lib/test --recursive -R spec",
"coverage": "istanbul cover _mocha -- --recursive lib/test -R spec",
"coverage:ci": "istanbul cover _mocha --report lcovonly -- -R spec --recursive lib/test && cat ./coverage/lcov.info | coveralls",
"test:watch": "npm run build && npm run mocha:watch",
"preversion": "npm test",
"postversion": "git push --follow-tags"
},
"repository": {
"url": "git+https://github.com/Elium/mighty-http-layer.git"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/core-js": "^0.9.34",
"@types/hapi": "^13.0.37",
"@types/lodash": "^4.14.38",
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.46",
"@types/request": "^0.0.33",
"chai": "^3.5.0",
"coveralls": "^2.11.12",
"del": "^2.2.1",
"gulp": "^3.9.1",
"gulp-sourcemaps": "^1.6.0",
"gulp-typescript": "^3.1.2",
"hapi": "^14.2.0",
"istanbul": "^0.4.4",
"lodash": "^4.12.0",
"merge2": "^1.0.2",
"mocha": "^2.4.5",
"mocha-lcov-reporter": "^1.2.0",
"run-sequence": "^1.2.2",
"typescript": "^2.0.8"
},
"dependencies": {
"@elium/mighty-http-adapter": "^4.2.1",
"@elium/mighty-js": "^4.2.2",
"hapi": "^15.2.0",
"request": "^2.72.0"
},
"bugs": {
"url": "https://github.com/Elium/mighty-http-layer/issues"
}
}