-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
73 lines (73 loc) · 2.05 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
{
"name": "jest-matcher-deep-close-to",
"version": "3.0.2",
"description": "Extend jest to assert arrays with approximate values",
"main": "./lib/index.js",
"module": "./lib-esm/index.js",
"types": "./lib/index.d.ts",
"keywords": [
"jest",
"jest-tests",
"jest-matchers",
"arrays"
],
"author": "Miguel Angel Asencio Hurtado",
"license": "MIT",
"files": [
"src",
"lib",
"lib-esm"
],
"scripts": {
"clean": "rimraf lib lib-esm",
"eslint": "eslint src --ext ts --cache",
"eslint-fix": "npm run eslint -- --fix",
"test": "npm run test-coverage && npm run eslint",
"test-coverage": "npm run test-only -- --coverage",
"test-only": "jest",
"prepublishOnly": "npm run tsc && npm run copy-dts",
"copy-dts": "copyfiles -u 1 \"src/**/*.d.ts\" lib",
"tsc": "npm run clean && npm run tsc-cjs && npm run tsc-esm",
"tsc-cjs": "tsc --project tsconfig.cjs.json",
"tsc-esm": "tsc --project tsconfig.esm.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maasencioh/jest-matcher-deep-close-to.git"
},
"bugs": {
"url": "https://github.com/maasencioh/jest-matcher-deep-close-to/issues"
},
"homepage": "https://github.com/maasencioh/jest-matcher-deep-close-to#readme",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"prettier": {
"arrowParens": "always",
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
},
"dependencies": {
"jest-matcher-utils": "~27.2.2"
},
"devDependencies": {
"@types/jest": "~27.0.2",
"@typescript-eslint/eslint-plugin": "~4.32.0",
"@typescript-eslint/parser": "~4.32.0",
"copyfiles": "^2.4.1",
"eslint": "~7.32.0",
"eslint-config-cheminfo": "~5.5.0",
"eslint-config-cheminfo-typescript": "~8.0.9",
"eslint-plugin-import": "~2.24.2",
"eslint-plugin-jest": "~24.4.2",
"eslint-plugin-prettier": "~4.0.0",
"jest": "~27.2.2",
"prettier": "~2.4.1",
"rimraf": "~3.0.2",
"ts-jest": "~27.0.5",
"typescript": "~4.4.3"
}
}