forked from BrowserSync/browser-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.65 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
{
"name": "browser-sync",
"description": "Live CSS Reload & Browser Syncing",
"version": "2.14.0",
"homepage": "http://www.browsersync.io/",
"author": {
"name": "Shane Osbourne"
},
"repository": "Browsersync/browser-sync",
"license": "Apache-2.0",
"bin": "bin/browser-sync.js",
"files": [
"bin",
"index.js",
"lib",
"lodash.custom.js"
],
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"env": "node ./test/env.js",
"test": "npm run lint && npm run env && npm run unit",
"lint": "eslint index.js lib bin examples test/specs gulpfile.js",
"pro": "protractor test/protractor/config.single.js",
"pro-local": "node test/protractor/setup.js",
"unit": "mocha --recursive test/specs --timeout 10000",
"cover": "npm run env && npm run cover-local && npm run coveralls",
"cover-local": "istanbul cover -x lodash.custom.js _mocha -- --timeout 10000 --recursive ./test/specs",
"coveralls": "istanbul-coveralls",
"pre-release": "npm test && npm run pro-local && npm run pro",
"lodash": "lodash include=isUndefined,isFunction,toArray,includes,union,each,isString,merge,isObject,set exports=node"
},
"dependencies": {
"browser-sync-client": "^2.3.3",
"browser-sync-ui": "0.6.0",
"bs-recipes": "1.2.2",
"chokidar": "1.5.1",
"connect": "3.4.1",
"dev-ip": "^1.0.1",
"easy-extender": "2.3.2",
"eazy-logger": "3.0.2",
"emitter-steward": "^1.0.0",
"fs-extra": "0.26.7",
"http-proxy": "1.13.3",
"immutable": "3.8.1",
"localtunnel": "1.8.1",
"micromatch": "2.3.8",
"opn": "^3.0.2",
"portscanner": "^1.0.0",
"qs": "6.2.0",
"resp-modifier": "6.0.2",
"rx": "4.1.0",
"serve-index": "1.7.3",
"serve-static": "1.10.3",
"server-destroy": "1.0.1",
"socket.io": "1.4.6",
"ua-parser-js": "0.7.10",
"yargs": "4.7.1"
},
"devDependencies": {
"browser-sync-spa": "1.0.2",
"bs-html-injector": "3.0.2",
"bs-latency": "1.0.0",
"bs-rewrite-rules": "1.0.0",
"bs-snippet-injector": "2.0.1",
"chai": "3.2.0",
"chalk": "1.1.1",
"compression": "1.6.1",
"eslint": "1.3.1",
"graceful-fs": "3.0.8",
"gulp": "3.9.0",
"gulp-contribs": "0.0.3",
"gulp-conventional-changelog": "0.4.0",
"gulp-filter": "2.0.2",
"istanbul": "0.3.19",
"istanbul-coveralls": "1.0.3",
"lodash-cli": "4.13.1",
"mocha": "2.3.0",
"q": "1.4.1",
"request": "2.61.0",
"rimraf": "2.5.2",
"sinon": "1.15.4",
"slugify": "0.1.1",
"socket.io-client": "^1.4.5",
"supertest": "1.1.0",
"vinyl": "0.5.3"
},
"keywords": [
"browser sync",
"css",
"live reload",
"sync"
]
}