-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.42 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
{
"name": "@alumna/liven",
"version": "1.5.0",
"description": "Optimized and lightweight live reload library, without dependencies",
"main": "dist/liven.js",
"module": "dist/liven.js",
"type": "module",
"scripts": {
"build": "rollup --config rollup/es.js",
"prepare": "npm run build",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage --forceExit --detectOpenHandles",
"clear_jest": "node --experimental-vm-modules node_modules/jest/bin/jest.js --clearCache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alumna/liven.git"
},
"keywords": [
"live",
"reload",
"live reload",
"browser sync",
"browser",
"sync",
"tiny",
"small"
],
"author": "Paulo Coghi",
"license": "MIT",
"bugs": {
"url": "https://github.com/alumna/liven/issues"
},
"homepage": "https://github.com/alumna/liven",
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"**/src/**",
"!**/dist/**",
"!**/node_modules/**",
"!**/rollup/**"
],
"verbose": true,
"transform": {}
},
"devDependencies": {
"@alumna/pulsa": "^1.0.6",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"cheap-watch": "^1.0.4",
"get-port": "^5.1.1",
"jest": "^29.7.0",
"puppeteer": "^21.6.0",
"rollup": "^4.6.1",
"ws": "^8.14.2"
}
}