generated from iamogbz/node-js-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
116 lines (116 loc) · 2.69 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"author": "iamogbz",
"bugs": {
"url": "https://github.com/iamogbz/jest-mock-module/issues"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"jest-mock-props": "^1.9.1"
},
"description": "Project description",
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@types/babel__core": "^7.20.1",
"@types/jest": "^29.5.4",
"@types/node": "^20.5.6",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"acorn": "^8.10.0",
"canvas": "^2.11.2",
"commitizen": "^4.3.0",
"coveralls": "^3.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.6.4",
"lint-staged": "^14.0.1",
"prettier": "^3.0.2",
"prettier-eslint": "^15.0.1",
"semantic-release": "^22.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=8",
"npm": ">=6"
},
"files": [
"lib",
"typings"
],
"homepage": "https://github.com/iamogbz/jest-mock-module#readme",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"jest": {
"coverageDirectory": "./artifacts/coverage",
"moduleDirectories": [
"<rootDir>",
"./node_modules"
],
"moduleFileExtensions": [
"node",
"js",
"ts",
"d.ts",
"json"
],
"preset": "ts-jest",
"testPathIgnorePatterns": [
"./artifacts/",
"./lib/",
"./node_modules/"
]
},
"keywords": [],
"license": "Unlicense",
"lint-staged": {
"*.{js,ts}": [
"npm run lint",
"npm test -- --bail --findRelatedTests"
]
},
"main": "lib/index.js",
"name": "jest-mock-module",
"release": {
"dryRun": false,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"repository": {
"type": "git",
"url": "https://github.com/iamogbz/jest-mock-module"
},
"scripts": {
"build": "tsc --project tsconfig.prod.json",
"build-watch": "tsc --watch",
"commit": "git-cz",
"coveralls": "cat ./artifacts/coverage/lcov.info | coveralls",
"lint": "eslint . --ext .js,.ts",
"release": "semantic-release",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"types": "lib/index.d.ts",
"version": "0.0.1"
}