-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.35 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
{
"name": "envone",
"version": "0.6.0",
"description": "Loads environment variables through the custom configurations",
"main": "index.js",
"keywords": [
"env",
".env",
"environment",
"variables",
"settings",
"node"
],
"engines": {
"node": ">=8"
},
"author": "Suthagar Kailayapathy <[email protected]>",
"contributors": [],
"repository": {
"type": "git",
"url": "git+https://github.com/apisquare/envone"
},
"license": "MIT",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "mocha --recursive",
"coverage": "nyc mocha --recursive",
"coverage-report": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"dependencies": {
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"chai": "~4.2.0",
"eslint": "~6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"husky": "^3.1.0",
"lint-staged": "~9.5.0",
"mocha": "~7.2.0",
"nyc": "^15.1.0",
"sinon": "^7.5.0"
},
"lint-staged": {
"*.js": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test"
}
},
"bugs": {
"url": "https://github.com/apisquare/envone/issues"
},
"homepage": "https://github.com/apisquare/envone#readme",
"directories": {
"tests": "tests"
}
}