-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.67 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.67 KB
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": "envfefe",
"version": "3.0.0",
"description": "Parses, sanitizes, and validates environment variables.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"lint": "eslint src --ext .ts",
"prepublishOnly": "npm run build",
"test": "mocha",
"test-cover": "nyc npm test",
"test-cover-submit": "nyc report --reporter=json && codecov -f coverage/*.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paperhive/envfefe.git"
},
"keywords": [
"environment",
"variables",
"env",
"parse",
"sanitize",
"validate"
],
"author": "André Gaul <andre@paperhive.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/paperhive/envfefe/issues"
},
"homepage": "https://github.com/paperhive/envfefe#readme",
"devDependencies": {
"@types/chai": "^4.2.13",
"@types/mocha": "^8.0.3",
"@types/ramda": "^0.27.20",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"chai": "^4.2.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"husky": "^5.2.0",
"lint-staged": "^10.5.4",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"@types/node": "^14.14.37",
"constant-case": "^3.0.0",
"fefe": "^3.0.0"
},
"mocha": {
"require": "ts-node/register",
"spec": "src/**/*.test.ts"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
}
}