forked from epoberezkin/fast-deep-equal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.25 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
{
"name": "@descript/fast-deep-equal",
"version": "2.1.2",
"description": "Fast deep equal",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"eslint": "eslint src benchmark spec",
"test": "npm run eslint && jest --coverage",
"build": "tsc -b tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/epoberezkin/fast-deep-equal.git"
},
"keywords": [
"fast",
"equal",
"deep-equal"
],
"author": "Evgeny Poberezkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/epoberezkin/fast-deep-equal/issues"
},
"homepage": "https://github.com/epoberezkin/fast-deep-equal#readme",
"devDependencies": {
"@types/expect": "^24.3.0",
"@types/mocha": "^10.0.0",
"benchmark": "^2.1.4",
"coveralls": "^2.13.1",
"deep-eql": "latest",
"deep-equal": "latest",
"eslint": "^4.0.0",
"jest": "^29.2.2",
"lodash": "latest",
"nano-equal": "latest",
"pre-commit": "^1.2.2",
"ramda": "latest",
"shallow-equal-fuzzy": "latest",
"source-map-support": "^0.5.21",
"ts-jest": "^29.0.3",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4",
"underscore": "latest"
},
"files": [
"dist",
"src"
]
}