-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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
{
"name": "npm-scripts-watcher",
"description": "Globbing file watcher to automatically run npm scripts from package.json when files change, with pretty colors.",
"version": "1.0.2",
"bin": "lib/watcher.js",
"main": "lib/watcher.js",
"scripts": {
"build": "babel -d lib src",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wehkamp/npm-scripts-watcher.git"
},
"keywords": [
"npm",
"scripts",
"file",
"watch",
"watcher"
],
"author": "Gert Hengeveld <info@ghengeveld.nl> (https://github.com/ghengeveld)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/wehkamp/npm-scripts-watcher/issues"
},
"homepage": "https://github.com/wehkamp/npm-scripts-watcher#readme",
"dependencies": {
"colors": "^1.1.2",
"debounce": "^1.0.0",
"glob": "^6.0.1",
"node-watch": "^0.3.4",
"shelljs": "^0.5.3"
},
"devDependencies": {
"babel-cli": "^6.2.0",
"babel-preset-es2015": "^6.1.18"
}
}