UNPKG

2.05 kBJSONView Raw
1{
2 "name": "env-cmd",
3 "version": "10.1.0",
4 "description": "Executes a command using the environment variables in an env file",
5 "main": "dist/index.js",
6 "types": "dist/index.d.ts",
7 "engines": {
8 "node": ">=8.0.0"
9 },
10 "bin": {
11 "env-cmd": "bin/env-cmd.js"
12 },
13 "scripts": {
14 "test": "mocha -r ts-node/register ./test/**/*.ts",
15 "test-cover": "nyc npm test",
16 "coveralls": "coveralls < coverage/lcov.info",
17 "lint": "ts-standard --fix && tsc --noEmit",
18 "build": "tsc",
19 "watch": "tsc -w"
20 },
21 "repository": {
22 "type": "git",
23 "url": "git+ssh://git@github.com/toddbluhm/env-cmd.git"
24 },
25 "keywords": [
26 "env",
27 "environment",
28 "cli",
29 "command",
30 "cmd",
31 "execute",
32 "run",
33 "file",
34 "variables",
35 "config"
36 ],
37 "author": "Todd Bluhm",
38 "contributors": [
39 "Eric Lanehart <eric@pushred.co>",
40 "Jon Scheiding <jonscheiding@gmail.com>",
41 "serapath (Alexander Praetorius) <dev@serapath.de>",
42 "Anton Versal <ant.ver@gmail.com>"
43 ],
44 "license": "MIT",
45 "bugs": {
46 "url": "https://github.com/toddbluhm/env-cmd/issues"
47 },
48 "homepage": "https://github.com/toddbluhm/env-cmd#readme",
49 "dependencies": {
50 "commander": "^4.0.0",
51 "cross-spawn": "^7.0.0"
52 },
53 "devDependencies": {
54 "@types/chai": "^4.0.0",
55 "@types/cross-spawn": "^6.0.0",
56 "@types/mocha": "^7.0.0",
57 "@types/node": "^12.0.0",
58 "@types/sinon": "^7.0.0",
59 "chai": "^4.0.0",
60 "coveralls": "^3.0.0",
61 "mocha": "^7.0.0",
62 "nyc": "^15.0.0",
63 "sinon": "^8.0.0",
64 "ts-node": "^8.0.0",
65 "ts-standard": "^4.0.0",
66 "typescript": "^3.7.0"
67 },
68 "nyc": {
69 "include": [
70 "src/**/*.ts"
71 ],
72 "extension": [
73 ".ts"
74 ],
75 "require": [
76 "ts-node/register"
77 ],
78 "reporter": [
79 "text",
80 "lcov"
81 ],
82 "sourceMap": true,
83 "instrument": true
84 },
85 "ts-standard": {
86 "project": "./tsconfig.eslint.json",
87 "ignore": [
88 "dist"
89 ]
90 },
91 "greenkeeper": {
92 "ignore": [
93 "@types/node"
94 ]
95 }
96}