-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.33 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
{
"name": "run-when-changed",
"version": "2.1.0",
"description": "Selectively executes commands when watched files are changed.",
"main": "lib/index.js",
"bin": {
"run-when-changed": "./bin/run-when-changed.js"
},
"files": [
"lib",
"bin"
],
"scripts": {
"prepublish": "babel *.js --out-dir ./lib --source-maps && mv ./lib/run-when-changed.* ./bin",
"test": "mocha --require babel-register tests/**/*-test.js",
"dev": "./bin/run-when-changed.js --watch 'tests/**/*-test.js' --exec 'mocha --require babel-register %s' --watch '*.js' --exec 'babel %s --out-dir ./lib --source-maps'"
},
"keywords": [
"watching",
"files",
"changes",
"exec",
"spawn",
"monitor",
"testing",
"mocha",
"gaze",
"watch"
],
"author": {
"name": "Alex Gorbatchev",
"url": "https://github.com/alexgorbatchev"
},
"repository": {
"type": "git",
"url": "https://github.com/alexgorbatchev/run-when-changed"
},
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"mocha": "^5.1.1"
},
"dependencies": {
"ansi-bold": "^0.1.1",
"commander": "^2.15.1",
"fs-find-root": "^2.0.0",
"gaze": "^1.1.2",
"minimatch": "^3.0.4"
}
}