-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 1.92 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
{
"name": "jest-properties-loader",
"version": "1.0.8",
"description": "jest properties to json loader",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/aquariuslt/jest-properties-loader",
"author": "Aquariuslt<[email protected]>",
"license": "MIT",
"keywords": [
"jest",
"jest-plugins",
"jest-loader",
"properties"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"test": "jest",
"test:cov": "jest --coverage",
"release": "semantic-release"
},
"files": [
"dist"
],
"dependencies": {
"properties": "^1.2.1"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/jest": "29.5.14",
"@types/node": "22.10.5",
"jest": "28.1.3",
"lodash": "4.17.21",
"semantic-release": "19.0.5",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "5.7.3",
"rimraf": "5.0.10"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"<rootDir>/src/*.ts",
"!<rootDir>/src/__tests__/**/*.ts"
],
"testMatch": [
"<rootDir>/src/**/*.test.ts"
],
"testEnvironment": "node",
"coverageDirectory": "<rootDir>/reports/coverage"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github",
"@semantic-release/npm",
"@semantic-release/changelog",
[
"@semantic-release/git",
{
"assets": [
"docs",
"package.json",
"README.md",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}