-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.01 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.01 KB
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
{
"name": "@adobe/optimized-diff",
"version": "1.0.0",
"description": "High-performance deep object diff algorithm with significant performance improvements over generic libraries",
"type": "module",
"main": "src/index.js",
"exports": {
".": "./src/index.js",
"./engine": "./src/engine.js"
},
"scripts": {
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adobe/spectrum-design-data.git"
},
"keywords": [
"diff",
"deep-diff",
"object-diff",
"algorithm",
"performance",
"optimization",
"javascript",
"comparison"
],
"author": "Garth Braithwaite <garthdb@gmail.com> (http://garthdb.com/)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/spectrum-design-data/issues"
},
"homepage": "https://github.com/adobe/spectrum-design-data#readme",
"dependencies": {},
"devDependencies": {
"ava": "^6.4.0",
"deep-object-diff": "^1.1.9"
},
"publishConfig": {
"provenance": true
}
}