-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
74 lines (74 loc) · 1.8 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
{
"name": "jest-location-mock",
"version": "2.0.0",
"description": "Jest hooks for JSDOM location mock",
"keywords": [
"jest",
"jsdom",
"location"
],
"homepage": "https://github.com/evelynhathaway/jest-location-mock#readme",
"bugs": {
"url": "https://github.com/evelynhathaway/jest-location-mock/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evelynhathaway/jest-location-mock.git"
},
"license": "MIT",
"author": "Evelyn Hathaway <[email protected]> (https://evelyn.dev)",
"sideEffects": true,
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"directories": {
"lib": "/lib",
"src": "/src"
},
"files": [
"/lib",
"/jest.d.ts"
],
"scripts": {
"build": "tsc -p ./tsconfig-build.json",
"lint": "eslint ./",
"prepare": "husky install",
"test": "jest"
},
"commitlint": {
"extends": "./node_modules/conventional-changelog-evelyn/commitlint.config.js"
},
"lint-staged": {
"**/package.json": "sort-package-json",
"./": "eslint --fix"
},
"release": {
"extends": "conventional-changelog-evelyn/release.config.js"
},
"dependencies": {
"@jedmao/location": "^3.0.0",
"jest-diff": "^29.6.4"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.4",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"commitlint": "^17.7.1",
"conventional-changelog-evelyn": "^1.3.1",
"eslint": "^8.44.0",
"eslint-plugin-evelyn": "^9.0.0",
"eslint-plugin-unicorn": "^47.0.0",
"husky": "^8.0.3",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"lint-staged": "^14.0.1",
"semantic-release": "^21.1.1",
"sort-package-json": "^2.5.1",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"engines": {
"node": "^16.10.0 || >=18.0.0"
}
}