-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.05 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
{
"name": "eisd",
"version": "1.5.1",
"description": "Execute your favorite command in SubDirectories. Use it like: `eisd '[command]' [subdirs...]` (Example: `eisd 'yarn build' client server scripts`)",
"main": "lib/index.js",
"scripts": {
"build": "rm -rf lib && tsc",
"prepublish": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guidsdo/eisd.git"
},
"keywords": [
"execute",
"command",
"in",
"directory",
"sub",
"subdirectory",
"folder",
"subfolder",
"folders",
"directories"
],
"author": "guidsdo",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/guidsdo/eisd/issues"
},
"homepage": "https://github.com/guidsdo/eisd#readme",
"dependencies": {
"colors": "^1.4.0",
"commander": "^6.2.0",
"shelljs": "^0.8.4"
},
"devDependencies": {
"@types/colors": "^1.2.1",
"@types/node": "^8.0.0",
"@types/shelljs": "^0.8.8",
"prettier": "^2.1.2",
"typescript": "^4.0.5"
},
"bin": {
"eisd": "./bin/eisd"
}
}