forked from steveukx/properties
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.51 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
{
"name": "properties-reader",
"description": "Properties file reader for Node.js",
"version": "2.3.0",
"author": {
"name": "Steve King",
"email": "[email protected]"
},
"contributors": [
{
"name": "Steve King",
"email": "[email protected]"
},
{
"name": "Aureliano Bergese",
"email": "[email protected]"
}
],
"dependencies": {
"mkdirp": "^1.0.4"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"jest": "^29.6.3"
},
"keywords": [
"properties",
"ini",
"parser"
],
"repository": {
"type": "git",
"url": "git://github.com/steveukx/properties"
},
"main": "src/properties-reader-factory",
"files": [
"src/**/*.js"
],
"scripts": {
"preversion": "npm test",
"postversion": "npm publish && git push && git push --tags",
"test": "jest --coverage"
},
"funding": {
"type": "github",
"url": "https://github.com/steveukx/properties?sponsor=1"
},
"engines": {
"node": ">=14"
},
"license": "MIT",
"jest": {
"roots": [
"<rootDir>/src/",
"<rootDir>/test/"
],
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
},
"coveragePathIgnorePatterns": [
"<rootDir>/test/"
],
"coverageReporters": [
"json",
"lcov",
"text",
"clover"
],
"testMatch": [
"**/test/**/*.spec.*"
]
}
}