This repository has been archived by the owner on Sep 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.64 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
{
"name": "@naturacosmeticos/check-environment-variables",
"version": "0.0.1",
"description": "Check needed environment variables",
"main": "./index.js",
"bin": {
"check-variables": "./checkVariables.js",
"validate-spec": "./validateSpecYaml.js"
},
"scripts": {
"lint": "eslint src/ integrationTests/ *.js",
"lint:fix": "eslint --fix src/ integrationTests/ *.js",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "mocha --recursive --exit --colors --exclude \"./test/**/*.steps.js\" \"./bin/**/*.test.js\" \"./src/**/*.test.js\"",
"test:integration": "cucumber-js --exit -f progress-bar integrationTests",
"test:coverage": "nyc npm test"
},
"keywords": [
"Environment",
"12-factor"
],
"standard": {
"globals": [
"describe",
"it"
]
},
"author": "Natura Cosméticos <[email protected]>",
"contributors": [
"Alberto Silva <[email protected]>",
"Fabrício Campos <[email protected]>"
],
"devDependencies": {
"@naturacosmeticos/eslint-config-natura": "^1.0.0",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"cucumber": "^5.1.0",
"eslint": "^5.15.3",
"eslint-plugin-import": "^2.16.0",
"faker": "^4.1.0",
"mocha": "^6.0.2",
"nyc": "^13.3.0",
"proxyquire": "^2.1.0",
"sinon": "^7.3.1",
"standard": "^12.0.1"
},
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.19.0",
"yaml": "^1.4.0"
},
"homepage": "https://github.com/natura-cosmeticos/check-environment-variables#readme",
"bugs": "https://github.com/natura-cosmeticos/check-environment-variables/issues",
"license": "MIT"
}