-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.53 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
60
61
62
63
64
65
66
67
{
"name": "env-decorator",
"version": "1.1.1",
"author": "Jean-Baptiste Pionnier",
"license": "MIT",
"description": "Decorator for environment based configurations",
"repository": "jbpionnier/env-decorator",
"homepage": "https://github.com/jbpionnier/env-decorator#readme",
"bugs": "https://github.com/jbpionnier/env-decorator/issues",
"keywords": [
"config",
"configuration",
"env",
"environment",
"decorator",
"settings",
"typescript"
],
"engines": {
"node": ">= 8.0.0"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "tslint -p . 'src/**/*.ts'",
"format": "prettier --write src/**/*.ts",
"clean": "rimraf dist",
"test": "NODE_ENV=test jest --maxWorkers=4",
"build": "tsc",
"prepare": "npm run lint && npm run test && npm run clean && npm run build"
},
"dependencies": {
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@jbpionnier/eslint-config-node": "^1.7.9",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.5",
"jest": "^29.2.2",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"tslint": "^6.1.3",
"typescript": "^4.8.4"
},
"jest": {
"testEnvironment": "node",
"preset": "ts-jest",
"collectCoverageFrom": [
"src/**/*.ts"
],
"coverageReporters": [
"lcov"
],
"modulePathIgnorePatterns": [
"<rootDir>/dist/"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
]
}
}