forked from M-Zuber/npm-watch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.07 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
{
"name": "npm-watch",
"version": "0.1.9",
"description": "run scripts from package.json when files change",
"main": "index.js",
"dependencies": {
"nodemon": "^1.3.8",
"through2": "^2.0.0"
},
"devDependencies": {
"crlf": "^1.1.0",
"markdown-code-blocks": "0.0.1",
"tape": "~2.3.2"
},
"bin": "./cli.js",
"scripts": {
"demo": "markdown-code-blocks -t bash < README.md",
"exclusions": "bash -c echo 'An extension'",
"prepublish": "crlf --set=LF cli.js watch-package.js"
},
"watch": {
"test": [
"watch-package.js",
"test/*.js"
],
"exclusions": {
"patterns": "*",
"extensions": "nothing",
"ignore": "ignored.js"
}
},
"repository": {
"type": "git",
"url": "git://github.com/grncdr/npm-watch.git"
},
"bugs": {
"type": "git",
"url": "git://github.com/grncdr/npm-watch/issues"
},
"homepage": "https://github.com/grncdr/npm-watch",
"keywords": [
"npm",
"watch",
"nodemon",
"monitor"
],
"author": "Stephen Sugden <[email protected]>",
"license": "MIT"
}