-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) · 1.77 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
{
"name": "watchem.js",
"version": "0.7.0",
"description": "A very simple script to watch for `.js` & `.css` files present in DOM over AJAX and reload the page/CSS when changes are detected.",
"module": "watchem.js",
"main": "dist/watchem.js",
"unpkg": "dist/watchem.min.js",
"author": {
"name": "Dumitru Uzun",
"email": "contact@duzun.me",
"url": "https://DUzun.Me/"
},
"reveal": true,
"scripts": {
"verup": "verup",
"build": "npx rollup -c rollup.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/duzun/watchem.js.git"
},
"keywords": [
"live",
"watcher",
"dom",
"css",
"develop",
"reload",
"refresh",
"synchronize",
"sync"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/duzun/watchem.js/issues"
},
"homepage": "https://github.com/duzun/watchem.js#readme",
"readmeFilename": "README.md",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^7.0.2",
"verup": "^1.7.1"
},
"files": [
"watchem.js",
"watchem.min.js",
"README.md"
],
"jshintConfig": {
"esversion": 6,
"browser": true,
"laxbreak": true,
"laxcomma": true,
"undef": true,
"unused": true,
"sub": true,
"expr": true,
"bitwise": false,
"eqeqeq": false,
"boss": true,
"eqnull": true,
"scripturl": true,
"-W041": false,
"-W018": false
},
"verup": {
"files": [
"watchem.js",
"bower.json",
"README.md"
],
"regs": [
"^((?:\\$|(\\s*(?:\\*|#)*\\s*@)|(\\s*(?:var|const|,)?\\s+))version[\\s\\:='\"]+)([0-9]+(?:\\.[0-9]+){2,2})",
"^(\\s?\\*.*v)([0-9]+(?:\\.[0-9]+){2,2})"
]
}
}