-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 991 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
40
41
42
43
44
45
{
"author": "Cody Greene <cody@variable.run>",
"bin": "lib/cli.js",
"description": "Combines a static webserver with a file watcher to automatically rebuild and refresh your web app",
"files": "lib/",
"keywords": [
"build",
"incremental",
"live-reload",
"browserify",
"watchify",
"spawn",
"server",
"tool",
"cli"
],
"license": "Unlicense",
"main": "lib/client.js",
"name": "rum",
"repository": {
"type": "git",
"url": "git+https://github.com/cody-greene/rum.git"
},
"scripts": {
"test": "mocha -bR tap"
},
"version": "7.0.0",
"eslintConfig": {
"extends": "./node_modules/@cody-greene/eslint-config/strict.yml",
"env": {
"node": true,
"es6": true
}
},
"dependencies": {
"browserify": "^17.0.0",
"chokidar": "^3.0.0",
"connect-gzip-static": "^2.0.0",
"minimist": "^1.2.0"
},
"devDependencies": {
"@cody-greene/eslint-config": "3.3.1",
"mocha": "^8.2.0"
}
}