UNPKG

1.67 kBJSONView Raw
1{
2 "name": "env-contract-check",
3 "version": "0.4.2",
4 "description": "Create a contract of environment variables for different environments.",
5 "main": "index.js",
6 "scripts": {
7 "lint": "npx eslint .",
8 "test": "sudo npx nyc mocha --exit",
9 "test-ci": "npx nyc mocha --exit",
10 "test-debug": "DEBUG=TEST sudo npx nyc mocha --exit",
11 "publish": "npx release-it"
12 },
13 "repository": {
14 "type": "git",
15 "url": "git+https://github.com/Stieneee/env-contract-check.git"
16 },
17 "keywords": [
18 "env",
19 "check",
20 "contract",
21 "environment",
22 "NODE_ENV",
23 "development",
24 "production",
25 "docker"
26 ],
27 "author": "Tyler Stiene <tystiene@gmail.com> (https://tylerstiene.ca)",
28 "license": "MIT",
29 "bugs": {
30 "url": "https://github.com/Stieneee/env-contract-check/issues"
31 },
32 "homepage": "https://github.com/Stieneee/env-contract-check#readme",
33 "eslintIgnore": [
34 "/coverage",
35 "/node_modules"
36 ],
37 "eslintConfig": {
38 "extends": [
39 "airbnb-base"
40 ],
41 "parserOptions": {
42 "ecmaVersion": 2017
43 },
44 "env": {
45 "node": true,
46 "mocha": true
47 },
48 "rules": {
49 "max-len": "off",
50 "no-console": "off",
51 "no-restricted-syntax": "off"
52 }
53 },
54 "devDependencies": {
55 "eslint": "^7.25.0",
56 "eslint-config-airbnb-base": "^14.2.1",
57 "eslint-import-resolver-node": "^0.3.4",
58 "eslint-plugin-import": "^2.22.1",
59 "mocha": "^8.3.2",
60 "nyc": "^15.1.0",
61 "release-it": "^14.6.1"
62 },
63 "dependencies": {
64 "debug": "^4.3.1",
65 "dot-prop": "^6.0.1",
66 "is-docker": "^2.2.1",
67 "markdown-table": "^2.0.0",
68 "strip-url-auth": "^1.0.1"
69 }
70}