-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.63 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
{
"name": "env-contract-check",
"version": "0.4.2",
"description": "Create a contract of environment variables for different environments.",
"main": "index.js",
"scripts": {
"lint": "npx eslint .",
"test": "sudo npx nyc mocha --exit",
"test-ci": "npx nyc mocha --exit",
"test-debug": "DEBUG=TEST sudo npx nyc mocha --exit",
"publish": "npx release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Stieneee/env-contract-check.git"
},
"keywords": [
"env",
"check",
"contract",
"environment",
"NODE_ENV",
"development",
"production",
"docker"
],
"author": "Tyler Stiene <[email protected]> (https://tylerstiene.ca)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Stieneee/env-contract-check/issues"
},
"homepage": "https://github.com/Stieneee/env-contract-check#readme",
"eslintIgnore": [
"/coverage",
"/node_modules"
],
"eslintConfig": {
"extends": [
"airbnb-base"
],
"parserOptions": {
"ecmaVersion": 2017
},
"env": {
"node": true,
"mocha": true
},
"rules": {
"max-len": "off",
"no-console": "off",
"no-restricted-syntax": "off"
}
},
"devDependencies": {
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"release-it": "^14.6.1"
},
"dependencies": {
"debug": "^4.3.1",
"dot-prop": "^6.0.1",
"is-docker": "^2.2.1",
"markdown-table": "^2.0.0",
"strip-url-auth": "^1.0.1"
}
}