-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
88 lines (88 loc) · 1.97 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "env-cmd",
"version": "10.1.0",
"description": "Executes a command using the environment variables in an env file",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"bin": {
"env-cmd": "bin/env-cmd.js"
},
"scripts": {
"prepare": "husky",
"test": "mocha",
"test-cover": "c8 npm test",
"coveralls": "coveralls < coverage/lcov.info",
"lint": "npx eslint .",
"build": "tsc",
"watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/toddbluhm/env-cmd.git"
},
"keywords": [
"env",
"environment",
"cli",
"command",
"cmd",
"execute",
"run",
"file",
"variables",
"config"
],
"author": "Todd Bluhm",
"contributors": [
"Eric Lanehart <[email protected]>",
"Jon Scheiding <[email protected]>",
"serapath (Alexander Praetorius) <[email protected]>",
"Anton Versal <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/toddbluhm/env-cmd/issues"
},
"homepage": "https://github.com/toddbluhm/env-cmd#readme",
"dependencies": {
"@commander-js/extra-typings": "^12.1.0",
"commander": "^12.1.0",
"cross-spawn": "^7.0.6"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.16.0",
"@types/chai": "^5.0.1",
"@types/cross-spawn": "^6.0.6",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.1",
"@types/sinon": "^17.0.3",
"c8": "^10.1.2",
"chai": "^5.1.2",
"coveralls": "^3.0.0",
"esmock": "^2.6.9",
"globals": "^15.12.0",
"husky": "^9.1.7",
"mocha": "^11.0.0",
"sinon": "^19.0.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.15.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"c8": {
"reporter": [
"text",
"lcov"
]
}
}