-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.73 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
{
"name": "@profusion/validated-env-schema",
"version": "0.1.1",
"description": "Validate environment variables against JSON Schema7",
"main": "./build/lib/index.js",
"types": "./build/lib/index.d.ts",
"author": "Gustavo Sverzut Barbieri <[email protected]>",
"license": "MIT",
"repository": "https://github.com/profusion/validated-env-schema",
"lint-staged": {
"*.{ts, js}": [
"prettier --write",
"eslint --fix",
"jest --bail --findRelatedTests"
]
},
"scripts": {
"example:usage": "ts-node examples/usage.ts",
"install-peers": "install-peers",
"check-types": "tsc --noEmit",
"run-lint": "eslint --max-warnings=0 --ext .ts lib examples",
"lint": "run-s check-types run-lint",
"build": "tsc",
"test": "jest",
"prepublishOnly": "tsc"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-angular": "^17.6.3",
"@profusion/json-schema-to-typescript-definitions": "^0.2.1",
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"ajv-formats": "^2.1.1",
"eslint": "^8.39.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"install-peers-cli": "^2.2.0",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"ajv": "^8.12.0"
},
"peerDependencies": {
"ajv-formats": "^2.1.1"
},
"packageManager": "[email protected]"
}