-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 1.82 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "type-dotenv",
"version": "1.0.0-beta.6",
"description": "A simple to use typed dotenv loader.",
"keywords": [],
"main": "dist/lib/type-dotenv.js",
"typings": "dist/types/type-dotenv.d.ts",
"files": [
"dist"
],
"author": "Jordan Stout <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/j/type-dotenv"
},
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"build": "rimraf dist && tsc",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"prepack": "yarn build"
},
"lint-staged": {
"{src,test}/**/*.ts": [
"prettier --write",
"git add"
]
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 95,
"lines": 95,
"statements": 95
}
},
"collectCoverageFrom": [
"src/*.{js,ts}"
]
},
"prettier": {
"singleQuote": true
},
"devDependencies": {
"@commitlint/cli": "^7.1.2",
"@commitlint/config-conventional": "^7.1.2",
"@types/jest": "^23.3.2",
"@types/node": "^10.17.49",
"husky": "^1.0.1",
"jest": "^23.6.0",
"jest-config": "^23.6.0",
"lint-staged": "^8.0.0",
"lodash.camelcase": "^4.3.0",
"prettier": "^1.14.3",
"reflect-metadata": "^0.1.13",
"rimraf": "^2.6.2",
"ts-jest": "^23.10.2",
"ts-node": "^7.0.1",
"typescript": "^4.1.3"
},
"dependencies": {
"dotenv": "^10.0.0"
},
"peerDependencies": {
"reflect-metadata": "^0.1.13"
}
}