-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
75 lines (75 loc) · 2.26 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
{
"name": "jest-date",
"version": "1.1.5",
"description": "Custom jest matchers to test dates",
"main": "dist/index.js",
"repository": "[email protected]:pkuczynski/jest-date.git",
"url": "https://github.com/pkuczynski/jest-date",
"contributors": [
"Stefan Wullems <[email protected]>",
"Piotr Kuczynski <[email protected]"
],
"license": "MIT",
"private": false,
"keywords": [
"date",
"date-fns",
"jest",
"jest date"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"doctoc": "^2.2.1",
"kcd-scripts": "^13.0.0",
"pretty-format": "^29.5.0",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"dependencies": {
"@babel/runtime": "^7.21.0",
"date-fns": "^2.29.3",
"jest-matcher-utils": "^29.5.0"
},
"scripts": {
"build": "npm run build:clean && tsc && npm run build:root && npm run build:docs",
"build:clean": "rm -rf dist extend-expect.js extend-expect.d.ts matchers.js matchers.d.ts",
"build:root": "tsc matchers.ts --noEmit false --declaration true && tsc extend-expect.ts --noEmit false --declaration true",
"publish:major": "npm run build && npm version major && npm publish && npm run build:clean",
"publish:minor": "npm run build && npm version minor && npm publish && npm run build:clean",
"publish:patch": "npm run build && npm version patch && npm publish && npm run build:clean",
"build:docs": "doctoc . --maxlevel 3 --notitle",
"format": "kcd-scripts format",
"lint": "kcd-scripts lint",
"setup": "npm install && npm run validate -s",
"test": "kcd-scripts test",
"test:update": "npm test -- --updateSnapshot --coverage",
"validate": "kcd-scripts validate"
},
"files": [
"dist",
"extend-expect.js",
"extend-expect.d.ts",
"matchers.js",
"matchers.d.ts"
],
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"./node_modules/kcd-scripts/eslint.js",
"plugin:@typescript-eslint/eslint-recommended"
],
"rules": {
"babel/no-invalid-this": "off",
"import/no-unresolved": "off"
}
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist"
]
}