forked from AsyncBanana/microdiff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.14 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
{
"name": "microdiff",
"version": "1.3.1",
"description": "Small, fast, zero dependency deep object and array comparison",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"scripts": {
"build": "tsc --module CommonJS && cd dist && mv \"index.js\" \"index.cjs\" && cd ../ && tsc --module es2020 && npx prettier -w dist/* --loglevel warn",
"test": "npm run build && uvu tests",
"bench": "npm run build && node bench.js",
"prepublish": "npm run build"
},
"keywords": [
"diff",
"comparison"
],
"author": "AsyncBanana",
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"deep-diff": "^1.0.2",
"deep-object-diff": "^1.1.7",
"diff": "^5.1.0",
"picocolors": "^1.0.0",
"prettier": "^2.7.1",
"typescript": "^4.7.4",
"uvu": "^0.5.6"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/AsyncBanana/microdiff"
},
"homepage": "https://github.com/AsyncBanana/microdiff#readme",
"bugs": "https://github.com/AsyncBanana/microdiff/issues"
}