-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "@lassehaslev/executor",
"version": "1.0.1",
"description": "Watch for file changes and then execute command",
"main": "index.js",
"scripts": {
"build": "babel src -d dist",
"dev": "babel src -d dist --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run build",
"try": "./src/app.js 'ls' --watch='**/*.js' --ignore='node_modules/'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lassehaslev/executor.git"
},
"keywords": [
"watch",
"execute",
"command",
"files",
"changes"
],
"author": "Lasse S. Haslev",
"license": "ISC",
"bugs": {
"url": "https://github.com/lassehaslev/executor/issues"
},
"homepage": "https://github.com/lassehaslev/executor#readme",
"bin": {
"executor": "dist/app.js"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.4.0"
},
"dependencies": {
"argparse": "^1.0.9",
"chokidar": "^1.7.0",
"command-line-args": "^4.0.4",
"shelljs": "^0.7.7"
}
}