forked from mattphillips/deep-object-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.57 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
52
53
54
55
56
57
58
59
60
61
{
"name": "deep-object-diff",
"version": "1.1.0",
"description": "Deep diffs two objects, including nested structures of arrays and objects, and return the difference.",
"main": "dist/index.js",
"types": "./index.d.ts",
"files": [
"dist",
"index.d.ts",
"README.md"
],
"scripts": {
"build": "babel src -d dist --ignore *.test.js",
"prepublish": "yarn build",
"test": "jest",
"test:coverage": "yarn test -- --coverage",
"test:report": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"test:watch": "yarn test -- --watch"
},
"author": "Matt Phillips",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-jest": "^22.0.0",
"babel-jest-assertions": "^0.1.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-gwt": "^1.0.0",
"babel-plugin-transform-es2015-modules-umd": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"coveralls": "^3.0.0",
"jest": "^23.6.0"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"add-module-exports",
"transform-es2015-modules-umd",
"babel-jest-assertions",
"gwt"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattphillips/deep-object-diff.git"
},
"keywords": [
"diff",
"object",
"deep",
"difference"
],
"bugs": {
"url": "https://github.com/mattphillips/deep-object-diff/issues"
},
"homepage": "https://github.com/mattphillips/deep-object-diff#readme"
}