-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.4 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": "@kaminooni/env",
"description": "Type-save env variables access",
"version": "2.0.1",
"author": {
"name": "kaminooni",
"url": "https://github.com/kaminooni"
},
"homepage": "https://github.com/kaminooni/env",
"bugs": "https://github.com/kaminooni/env/issues",
"keywords": [
"env",
"config",
"typescript",
"ts",
"node"
],
"repository": {
"type": "git",
"url": "https://github.com/kaminooni/env.git"
},
"license": "MIT",
"engines": {
"node": ">=14"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"lint": "eslint",
"lint:fix": "eslint ./src --ext .ts --fix",
"test": "jest",
"test:coverage": "jest --collectCoverage",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@types/jest": "^29.2.0",
"@types/node": "^18.11.7",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.2.2",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}