forked from typicode/hotel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 2.74 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "hotel",
"version": "0.5.13",
"description": "Local domains for everyone and more! ",
"main": "lib",
"bin": "lib/cli/bin.js",
"preferGlobal": true,
"engines": {
"node": ">= 0.12"
},
"scripts": {
"test": "ava && standard --fix",
"start": "run-p start:*",
"start:webpack": "rimraf dist && webpack -d --watch",
"start:nodemon": "nodemon -- src/daemon",
"prepublish": "npm run build",
"uninstall": "node bin/uninstall.js",
"precommit": "npm test",
"build": "run-s build:*",
"build:babel": "rimraf lib && babel src -d lib --copy-files --ignore src/front",
"build:webpack": "rimraf dist && webpack -p"
},
"repository": {
"type": "git",
"url": "https://github.com/typicode/hotel.git"
},
"keywords": [
"dev",
"utility",
"process",
"manager",
"local",
"server",
"host",
"proxy"
],
"author": "Typicode <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/typicode/hotel/issues"
},
"homepage": "https://github.com/typicode/hotel",
"dependencies": {
"after-all": "^2.0.2",
"ansi2html": "0.0.1",
"array-find": "^1.0.0",
"chalk": "^1.1.3",
"chokidar": "^1.2.0",
"connect-sse": "^1.2.0",
"exit-hook": "^1.1.1",
"express": "^4.13.3",
"get-port": "^2.0.0",
"http-proxy": "^1.16.2",
"matcher": "^0.1.2",
"mkdirp": "^0.5.1",
"once": "^1.3.2",
"os-homedir": "^1.0.1",
"respawn": "^2.4.1",
"server-ready": "^0.3.1",
"strip-ansi": "^3.0.0",
"sudo-block": "^1.2.0",
"tildify": "^1.1.2",
"unquote": "^1.1.0",
"untildify": "^3.0.2",
"update-notifier": "^1.0.0",
"user-startup": "^0.2.1",
"vhost": "^3.0.2",
"yargs": "^6.3.0"
},
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.1.2",
"babel-core": "^6.7.4",
"babel-loader": "^6.2.4",
"babel-plugin-transform-runtime": "^6.5.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"babel-register": "^6.9.0",
"babel-runtime": "^6.6.1",
"css-loader": "^0.25.0",
"escape-html": "^1.0.3",
"husky": "^0.11.3",
"json-loader": "^0.5.4",
"lodash.difference": "^4.3.0",
"mock-fs": "^3.9.0",
"nodemon": "^1.8.1",
"npm-run-all": "^3.1.0",
"rimraf": "^2.5.2",
"sinon": "^1.17.3",
"standard": "^8.5.0",
"supertest": "^2.0.1",
"uid": "0.0.2",
"vue": "^2.0.3",
"vue-hot-reload-api": "^2.0.6",
"vue-html-loader": "^1.2.3",
"vue-loader": "^9.7.0",
"vue-style-loader": "^1.0.0",
"webpack": "^1.12.13",
"whatwg-fetch": "^1.0.0"
},
"ava": {
"serial": true,
"verbose": true,
"require": [
"babel-register"
],
"babel": "inherit"
}
}