-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.86 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
{
"name": "deep-equality-data-structures",
"version": "1.5.1",
"description": "Javascript data structures (e.g., Map, Set) that support deep object equality",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"prepare": "husky && npm run compile",
"_lint": "eslint --fix",
"_lint:check": "eslint",
"_format": " prettier --write --ignore-unknown",
"_format:check": "prettier --check --ignore-unknown",
"fix": "npm run _lint . && npm run _format .",
"check": "npm run _lint:check . && npm run _format:check .",
"compile": "tsc -p ./",
"watch": "npm run compile -- -watch",
"test": "jest",
"pretest:ci": "npm run check",
"test:ci": "npm test"
},
"lint-staged": {
"*.ts": "npm run _lint -- --cache",
"*": "npm run _format"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adamhamlin/deep-equality-data-structures.git"
},
"keywords": [
"deep equality",
"deep",
"equality",
"map",
"set",
"data structure"
],
"author": "Adam C Hamlin <achamlin@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/adamhamlin/deep-equality-data-structures/issues"
},
"homepage": "https://github.com/adamhamlin/deep-equality-data-structures#readme",
"dependencies": {
"object-hash": "^3.0.0"
},
"devDependencies": {
"@adamhamlin/eslint-config": "^1.4.1",
"@tsconfig/recommended": "^1.0.7",
"@types/jest": "^29.5.12",
"@types/object-hash": "^3.0.6",
"husky": "^9.1.5",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}