-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.92 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
{
"name": "@myrotvorets/envalidators",
"version": "2.1.3",
"description": "Collection of validators for envalid",
"main": "dist/lib/index.js",
"scripts": {
"build": "tsc",
"lint": "eslint -f gha .",
"lint:fix": "eslint --fix .",
"typecheck": "tsc --noEmit",
"pretest": "npm run lint",
"test": "node --require ts-node/register/transpile-only --test --test-reporter=spec --test-reporter-destination=stdout --test-reporter=node-reporter-gha --test-reporter-destination=stdout test/unit/*.test.ts",
"test:coverage": "c8 node --require ts-node/register/transpile-only --test test/unit/*.test.ts",
"test:sonarqube": "c8 node --require ts-node/register/transpile-only --test --test-reporter=spec --test-reporter-destination=stdout --test-reporter=node-reporter-sonarqube --test-reporter-destination=test-report.xml test/unit/*.test.ts",
"prepare": "npm run build"
},
"files": [
"dist/lib/index.d.ts",
"dist/lib/index.js",
"dist/lib/index.js.map",
"dist/lib/*/index.d.ts",
"dist/lib/*/index.js",
"dist/lib/*/index.js.map"
],
"typings": "dist/lib/index.d.ts",
"keywords": [
"envalid",
"validator",
"validators"
],
"author": "Myrotvorets <support@myrotvorets.center> (https://myrotvorets.center/)",
"license": "MIT",
"devDependencies": {
"@myrotvorets/eslint-config-myrotvorets-ts": "^3.0.0",
"@types/validator": "^13.12.1",
"c8": "^10.1.2",
"envalid": "^8.0.0",
"eslint-formatter-gha": "^1.5.1",
"node-reporter-gha": "^2.0.4",
"node-reporter-sonarqube": "^1.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"ipaddr.js": "^2.0.0",
"validator": "^13.7.0"
},
"peerDependencies": {
"envalid": "^6.0.0 || ^7.0.0 || ^8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/myrotvorets/envalidators.git"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}