-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 969 Bytes
/
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
{
"name": "js-testdiff",
"type": "module",
"version": "1.0.5",
"description": "The \"testDiff\" deep diff/test function from Differentia.js, ported to TypeScript. Returns true if input 1 differs in any way from input 2. Performs deep object search by default, works OK with circular references.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "npm run build",
"build": "tsc src/index.ts src/lib/unitTest.ts --module es6 --lib es6 --outDir dist/ && cp src/index.d.ts dist/ && node test.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Floofies/js-testdiff.git"
},
"keywords": [
"test",
"diff",
"object",
"comparison",
"compare",
"deep",
"circular"
],
"author": "Dani Glore",
"license": "MIT",
"bugs": {
"url": "https://github.com/Floofies/js-testdiff/issues"
},
"homepage": "https://github.com/Floofies/js-testdiff#readme",
"devDependencies": {
"@types/node": "^18.15.13"
}
}