forked from cosmicanant/recursive-diff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.41 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
{
"name": "recursive-diff.js",
"version": "0.2.3",
"description": "Find diff between any two variables where variables be any valid JavaScript data type like string, numeric, array or object",
"main": "build/diff.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run lint",
"clean": "rimraf build",
"lint": "eslint src",
"build:module": "babel src --out-dir build",
"build": "npm run build:module",
"prepublish": "npm run clean && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/cosmicanant/recursive-diff.git"
},
"keywords": [
"deep",
"diff",
"deep",
"difference",
"object",
"diff",
"object",
"difference",
"recursive",
"diff",
"recursive",
"difference",
"tree",
"diff",
"tree",
"difference",
"variable",
"difference",
"track",
"change"
],
"author": "Anant <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cosmicanant/recursive-diff/issues"
},
"contributors": [
"Eugene Rodionov (https://github.com/theaqua)"
],
"homepage": "https://github.com/cosmicanant/recursive-diff",
"devDependencies": {
"babel": "^5.8.21",
"babel-eslint": "^4.0.5",
"eslint": "^1.1.0",
"eslint-config-airbnb": "0.0.7",
"eslint-plugin-react": "^3.2.2",
"rimraf": "^2.4.2"
}
}