-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.21 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
{
"name": "differrer",
"version": "1.0.1",
"files": ["dist"],
"main": "./dist/differrer.umd.js",
"module": "./dist/differrer.mjs",
"types": "./dist/main.d.ts",
"exports": {
".": {
"import": "./dist/differrer.mjs",
"require": "./dist/differrer.umd.js"
}
},
"repository": {
"type": "git",
"url": "https://github.com/Lukasz-pluszczewski/differrer"
},
"author": "Łukasz Pluszczewski",
"bugs": {
"url": "https://github.com/Lukasz-pluszczewski/differrer/issues"
},
"homepage": "https://github.com/Lukasz-pluszczewski/differrer",
"keywords": [
"diff",
"deep-diff",
"difference",
"compare",
"deep",
"jsdiff",
"jsondiff",
"json-diff",
"change",
"changes"
],
"license": "MIT",
"scripts": {
"build": "vite build && tsc --emitDeclarationOnly",
"test": "jest",
"generateExampleTables": "ts-node --esm src/scripts/generateExampleTables.ts",
"testDiffChangesView": "ts-node --esm src/scripts/testDiffChangesView.ts"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"jest": "^29.4.1",
"json5": "^2.2.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"vite": "^4.1.0"
}
}