-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.41 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": "@cubos/env",
"version": "0.0.0",
"description": "Strict process.env",
"type": "module",
"exports": "./src/index.js",
"engines": {
"node": ">=14.16"
},
"scripts": {
"test": "jest",
"eslint:fix": "eslint --fix '{src,spec}/**/*.ts'",
"eslint:check": "eslint '{src,spec}/**/*.ts'",
"build": "tsc"
},
"keywords": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cubos/node-env.git"
},
"bugs": {
"url": "https://github.com/cubos/node-env/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/cubos/node-env#readme",
"devDependencies": {
"@cubos/eslint-config": "^2.0.631875",
"@types/jest": "^28.1.4",
"@types/node": "^18.0.0",
"jest": "^28.1.2",
"jest-extended": "^2.0.0",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"jest": {
"preset": "ts-jest",
"modulePaths": [
"<rootDir>/src/"
],
"testEnvironment": "node",
"testMatch": [
"**/spec/**/*.ts"
],
"verbose": true,
"testTimeout": 60000,
"collectCoverage": true,
"coverageReporters": [
"text",
"lcov"
],
"setupFilesAfterEnv": [
"jest-extended"
],
"extensionsToTreatAsEsm": [".ts"],
"globals": {
"ts-jest": {
"useESM": true
}
},
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
}
}
}