-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.15 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.15 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
71
72
73
74
{
"name": "@z-brain/typed-node-env",
"description": "💥 Strictly typed access and type-casting for ENV variables 👏",
"license": "GPL-3.0",
"private": false,
"version": "1.0.6",
"keywords": [
"config",
"configuration",
"env",
"environment",
"decorator",
"settings",
"typescript",
"configuration-management",
"environment-variables"
],
"bugs": {
"url": "https://github.com/z-brain/typed-node-env/issues"
},
"homepage": "https://github.com/z-brain/typed-node-env#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/z-brain/typed-node-env.git"
},
"engines": {
"node": ">= 12.0.0",
"npm": ">= 6.0.0",
"yarn": "^1.20.0"
},
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"build:prod": "npm run build",
"lint": "eslint --ext .js,.ts src/**",
"lint:fix": "npm run lint -- --fix",
"pre-push": "npm run lint && npm run test && npm run build:prod && npm run tpl-repo:check",
"preinstall": "node ./tools/check-yarn.js",
"test": "jest -c jest.config.js",
"test:watch": "npm run test -- --watch",
"tpl-repo": "tools/merge-with-repository-template.sh",
"tpl-repo:check": "npm run tpl-repo -- check",
"tpl-repo:merge": "npm run tpl-repo -- merge",
"gen-public-package.json": "tools/gen-public-package.js"
},
"dependencies": {
"reflect-metadata": "^0.1.12",
"dotenv": "~8.2.0"
},
"devDependencies": {
"@types/jest": "~26.0.10",
"@types/node": "^14.0.24",
"@typescript-eslint/eslint-plugin": "~3.3.0",
"@typescript-eslint/parser": "~3.3.0",
"eslint": "~7.2.0",
"eslint-config-airbnb-base": "~14.2.0",
"eslint-import-resolver-typescript": "~2.0.0",
"eslint-plugin-filenames": "~1.3.2",
"eslint-plugin-import": "~2.21.2",
"eslint-plugin-promise": "~4.2.1",
"eslint-plugin-unicorn": "~20.1.0",
"husky": "~4.2.5",
"jest": "~26.4.1",
"jest-extended": "~0.11.5",
"rimraf": "~3.0.2",
"ts-jest": "~26.2.0",
"typescript": "~3.9.7"
},
"husky": {
"hooks": {
"pre-push": "npm run pre-push",
"post-merge": "IS_YARN=true yarn install"
}
}
}