-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
39 lines (39 loc) · 896 Bytes
/
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
{
"name": "hexo-browsersync",
"version": "2.0.0",
"description": "BrowserSync plugin of Hexo",
"main": "index",
"scripts": {
"clean": "rm -rf .nyc_output coverage",
"eslint": "eslint .",
"test": "mocha test/index.js",
"test-cov": "nyc --reporter=lcovonly npm run test"
},
"directories": {
"lib": "./lib"
},
"engines": {
"node": ">= 12"
},
"repository": "hexojs/hexo-browsersync",
"homepage": "https://hexo.io/",
"keywords": [
"hexo",
"browsersync",
"browser-sync"
],
"author": "Tommy Chen <[email protected]> (https://zespia.tw)",
"license": "MIT",
"dependencies": {
"browser-sync": "^3.0.2",
"connect-injector": "^0.4.4"
},
"devDependencies": {
"coveralls": "^3.1.1",
"eslint": "^8.6.0",
"eslint-config-hexo": "^5.0.0",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0"
}
}