-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.78 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "bootit",
"version": "1.3.2",
"description": "A bootstrap module which will start a HTTP(s) server for an express application",
"main": "./build/bootit.js",
"files": [
"build",
"src",
"test"
],
"scripts": {
"build": "gulp build",
"test": "mocha ./test/main.js --compilers js:babel-core/register"
},
"author": "Kieron Wiltshire",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kieronwiltshire/node-bootit.git"
},
"bugs": {
"url": "https://github.com/kieronwiltshire/node-bootit/issues"
},
"homepage": "https://github.com/kieronwiltshire/node-bootit#readme",
"dependencies": {
"babel-runtime": "^6.26.0",
"debug": "^2.6.8",
"http": "0.0.0",
"https": "^1.0.0",
"redirect-https": "^1.1.5"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.23.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.0",
"chai-http": "^3.0.0",
"express": "^4.15.3",
"fs-extra": "^2.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"install": "^0.13.0",
"mocha": "^3.2.0",
"natives": "^1.1.6",
"npm": "^6.13.7"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"add-module-exports",
"transform-runtime",
"transform-async-to-generator",
"transform-class-properties",
[
"babel-plugin-transform-builtin-extend",
{
"globals": [
"Error",
"Array"
]
}
]
]
}
}