|
1 | 1 | { |
2 | | - "name": "js-testdiff", |
3 | | - "type": "module", |
4 | | - "version": "1.0.2", |
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.", |
6 | | - "main": "dist/index.js", |
7 | | - "scripts": { |
8 | | - "test": "npm run build", |
9 | | - "build": "tsc src/index.ts src/lib/unitTest.ts --module es6 --lib es6 --outDir dist/ && node test.mjs" |
10 | | - }, |
11 | | - "repository": { |
12 | | - "type": "git", |
13 | | - "url": "git+https://github.com/Floofies/js-testdiff.git" |
14 | | - }, |
15 | | - "keywords": [ |
16 | | - "test", |
17 | | - "diff", |
18 | | - "object", |
19 | | - "comparison", |
20 | | - "compare", |
21 | | - "deep", |
22 | | - "circular" |
23 | | - ], |
24 | | - "author": "Dani Glore", |
25 | | - "license": "MIT", |
26 | | - "bugs": { |
27 | | - "url": "https://github.com/Floofies/js-testdiff/issues" |
28 | | - }, |
29 | | - "homepage": "https://github.com/Floofies/js-testdiff#readme", |
30 | | - "devDependencies": { |
31 | | - "@types/node": "^18.15.13" |
32 | | - } |
| 2 | + "name": "js-testdiff", |
| 3 | + "type": "module", |
| 4 | + "version": "1.0.2", |
| 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.", |
| 6 | + "main": "dist/index.js", |
| 7 | + "types": "./dist/index.d.ts", |
| 8 | + "scripts": { |
| 9 | + "test": "npm run build", |
| 10 | + "build": "tsc src/index.ts src/lib/unitTest.ts --module es6 --lib es6 --outDir dist/ && cp src/index.d.ts dist/ && node test.mjs" |
| 11 | + }, |
| 12 | + "repository": { |
| 13 | + "type": "git", |
| 14 | + "url": "git+https://github.com/Floofies/js-testdiff.git" |
| 15 | + }, |
| 16 | + "keywords": [ |
| 17 | + "test", |
| 18 | + "diff", |
| 19 | + "object", |
| 20 | + "comparison", |
| 21 | + "compare", |
| 22 | + "deep", |
| 23 | + "circular" |
| 24 | + ], |
| 25 | + "author": "Dani Glore", |
| 26 | + "license": "MIT", |
| 27 | + "bugs": { |
| 28 | + "url": "https://github.com/Floofies/js-testdiff/issues" |
| 29 | + }, |
| 30 | + "homepage": "https://github.com/Floofies/js-testdiff#readme", |
| 31 | + "devDependencies": { |
| 32 | + "@types/node": "^18.15.13" |
| 33 | + } |
33 | 34 | } |
0 commit comments