-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.12 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.12 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
43
44
45
46
{
"name": "deep-lib",
"license": "MIT",
"version": "1.1.0",
"homepage": "https://github.com/CoderSyndicate/deep-lib",
"author": "https://github.com/CoderSyndicate/deep-lib/graphs/contributors",
"description": "Enables to manipulate data and its substructures using dot separated property paths and methods to create, update, delete, select, move, search, check equality, check diff, ...",
"keywords": [
"object",
"deep",
"data",
"structure",
"add",
"move",
"delete",
"equal",
"clone",
"diff",
"get",
"manipulation"
],
"dependencies": {
"clone": "*",
"deep-diff": "*",
"deep-equal": "*"
},
"devDependencies": {
"chai": "*",
"gulp": "^3.9.0",
"gulp-concat": "^2.6.0",
"gulp-jsdoc-to-markdown": "^1.1.1",
"gulp-rename": "^1.2.2",
"gulp-util": "^3.0.6",
"gulpfile.basics": "*",
"mocha": "*"
},
"repository": {
"type": "git",
"url": "git://github.com/CoderSyndicate/deep-lib.git"
},
"scripts": {
"test": "gulp test"
},
"bugs": "https://github.com/CoderSyndicate/deep-lib/issues",
"main": "./lib/deep-lib.js"
}