-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
36 lines (36 loc) · 831 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
{
"name": "ladon",
"version": "1.0.6",
"description": "Run commands in parallel on many files, like GNU parallel",
"main": "ladon.js",
"bin": {
"ladon": "ladon.js"
},
"scripts": {
"test": "node_modules/mocha/bin/_mocha -R spec test.js",
"prepublish": "node_modules/mocha/bin/_mocha -R spec test.js"
},
"author": "Daniel G. Taylor",
"license": "MIT",
"dependencies": {
"async": "~0.9.0",
"glob": "~4.0.5",
"mkdirp": "^0.5.0",
"yargs": "^1.2.1"
},
"devDependencies": {
"mocha": "^1.18.2"
},
"repository": {
"type": "git",
"url": "https://github.com/danielgtaylor/ladon.git"
},
"keywords": [
"parallel",
"process"
],
"bugs": {
"url": "https://github.com/danielgtaylor/ladon/issues"
},
"homepage": "https://github.com/danielgtaylor/ladon"
}