forked from toddbluhm/env-cmd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.26 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.26 KB
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
49
50
51
52
{
"name": "@smallpdf/env-cmd",
"version": "5.1.0-fix.1",
"description": "Executes a command using the envs in the provided env file",
"main": "lib/index.js",
"bin": {
"env-cmd": "bin/env-cmd.js"
},
"scripts": {
"test": "mocha",
"test-cover": "istanbul cover node_modules/.bin/_mocha -- -R spec",
"test-lint": "standard",
"coveralls": "coveralls < coverage/lcov.info",
"lint": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/toddbluhm/env-cmd.git"
},
"keywords": [
"env",
"cli",
"command",
"exec",
"environment",
"run"
],
"author": "Todd Bluhm",
"contributors": [
"Eric Lanehart <eric@pushred.co>",
"Jon Scheiding <jonscheiding@gmail.com>",
"serapath (Alexander Praetorius) <dev@serapath.de>",
"Anton Versal <ant.ver@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/toddbluhm/env-cmd/issues"
},
"homepage": "https://github.com/toddbluhm/env-cmd#readme",
"dependencies": {
"cross-spawn": "^5.0.1"
},
"devDependencies": {
"better-assert": "^1.0.2",
"coveralls": "^2.11.12",
"istanbul": "^0.4.4",
"mocha": "^3.0.2",
"proxyquire": "^1.7.10",
"sinon": "^2.0.0",
"standard": "^10.0.0"
}
}