-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.2 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
{
"name": "sugar-env",
"version": "1.5.15",
"description": "Sugar code to read environment variables with default values.",
"license": "MIT",
"author": "Rafael Willians <[email protected]>",
"contributors": [
"Lucas Santos <[email protected]>"
],
"keywords": [
"env",
"environment",
"default",
"current"
],
"main": "dist/index.js",
"files": [
"dist/*",
"dist/**/*"
],
"homepage": "https://github.com/rwillians/sugar-env.js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/rwillians/sugar-env.js.git"
},
"bugs": {
"url": "https://github.com/rwillians/sugar-env.js/issues"
},
"engines": {
"node": ">=7.6.0"
},
"scripts": {
"build": "tsc",
"coverage": "nyc --reporter=text npm test",
"coverage:report": "nyc report --reporter=text-lcov",
"lint": "standard",
"lint:fix": "standard --fix",
"pretest": "tsc",
"test": "mocha test/*.test.js --check-leaks --full-trace --use_strict --recursive"
},
"devDependencies": {
"@types/node": "^20.8.4",
"chai": "^4.3.10",
"debug": "^4.3.4",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"standard": "^17.1.0",
"typescript": "^5.2.2"
}
}