-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.6 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
{
"name": "mini-sync",
"version": "0.3.0",
"description": "A tiny, live reloading development server for static sites.",
"type": "module",
"main": "server.js",
"umd:main": "client/dist/client.js",
"unpkg": "client/dist/client.js",
"files": [
"server.js",
"client"
],
"scripts": {
"build": "microbundle build --format iife --no-sourcemap --cwd client",
"docs": "doctoc README.md --github && documentation readme server.js --section=API && prettier --write README.md",
"git-pre-commit": "precise-commits",
"prerelease": "npm run build",
"release": "np --no-yarn",
"test": "npm run test:node && npm run test:browser",
"test:browser": "node test/test.browser.js",
"test:node": "node test/test.node.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rdmurphy/mini-sync.git"
},
"keywords": [
"development",
"static",
"livereload"
],
"author": "Ryan Murphy",
"license": "MIT",
"bugs": {
"url": "https://github.com/rdmurphy/mini-sync/issues"
},
"homepage": "https://github.com/rdmurphy/mini-sync#readme",
"dependencies": {
"local-access": "^1.1.0",
"polka": "^0.5.2",
"sirv": "^2.0.0"
},
"devDependencies": {
"@newswire/prettier-config": "^3.0.0",
"@vercel/git-hooks": "^1.0.0",
"doctoc": "^2.1.0",
"documentation": "^13.2.5",
"livereload-js": "^3.3.2",
"microbundle": "^0.14.2",
"node-fetch": "^3.1.0",
"np": "^7.6.0",
"playwright": "^1.17.2",
"precise-commits": "^1.0.2",
"prettier": "^2.5.1",
"uvu": "^0.5.3"
},
"prettier": "@newswire/prettier-config"
}