forked from hughsk/scoped-bulk
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 968 Bytes
/
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
{
"name": "bulk",
"version": "2.0.1",
"description": "Run a command from every installed npm package under a certain directory",
"main": "index.js",
"license": "MIT",
"bin": {
"bulk": "cli.js"
},
"scripts": {
"test": "node test | tap-spec && standard"
},
"author": "Tim Oxley <[email protected]>",
"dependencies": {
"minimist": "^1.2.0",
"shell-quote": "^1.6.1",
"split": "^1.0.0",
"through2": "^2.0.1"
},
"devDependencies": {
"bl": "^1.1.2",
"standard": "^7.1.2",
"tap-spec": "^4.1.1",
"tape": "^4.6.0"
},
"keywords": [
"package",
"module",
"npm",
"tool",
"cli",
"batch",
"bulk",
"run",
"command"
],
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timoxley/bulk.git"
},
"bugs": {
"url": "https://github.com/timoxley/bulk/issues"
},
"homepage": "https://github.com/timoxley/bulk"
}