-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 945 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
{
"name": "each-version",
"version": "1.0.2",
"description": "CLI to run a given command against each configuration of dependencies in each.json",
"main": "lib/index.js",
"scripts": {
"test": "ava",
"lint": "eslint lib/ test/"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/mwinche/each-version.git"
},
"bin": {
"each": "./lib/cli.js"
},
"keywords": [
"each",
"version",
"versions",
"all",
"configuration",
"test",
"CLI",
"command",
"runner"
],
"author": "Matt Winchester",
"license": "MIT",
"bugs": {
"url": "https://github.com/mwinche/each-version/issues"
},
"homepage": "https://github.com/mwinche/each-version#readme",
"devDependencies": {
"ava": "0.15.2",
"eslint": "2.13.1",
"proxyquire": "1.7.9",
"sinon": "1.17.4"
},
"dependencies": {
"child-process-promise": "2.0.3",
"colors": "1.1.2"
}
}