forked from planetmalone/livereload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 845 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
{
"name": "simple-livereload",
"version": "1.0.0",
"description": "Simply adds the livereload script to a page on each refresh.",
"main": "index.js",
"scripts": {
"build": "babel src -d dist",
"watch": "npm-watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/planetmalone/livereload.git"
},
"keywords": [
"livereload"
],
"author": "Sean Malone <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/planetmalone/livereload/issues"
},
"homepage": "https://github.com/planetmalone/livereload#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-latest": "^6.16.0",
"npm-watch": "^0.1.6"
},
"watch": {
"build": "src/**/*.js"
}
}