-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
47 lines (47 loc) · 1.02 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
{
"name": "lodash-deep",
"version": "2.0.0",
"description": "Lodash mixins for (deep) object accessing / manipulation.",
"main": "lodash-deep.js",
"directories": {
"test": "test"
},
"dependencies": {
"lodash": ">=3.7.0"
},
"devDependencies": {
"gulp": "~3.8.8",
"gulp-jasmine": "^2.3.0",
"gulp-rename": "~1.2.0",
"gulp-uglify": "~1.0.1",
"karma": "0.13.21",
"karma-jasmine": "0.3.7",
"karma-chrome-launcher": "0.2.2",
"karma-sauce-launcher": "0.3.1"
},
"engines": {
"node": ">=0.8.0",
"npm": ">=1.2.10"
},
"scripts": {
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "https://github.com/marklagendijk/lodash-deep.git"
},
"keywords": [
"lodash",
"mixin",
"mixins",
"deep",
"object",
"walking"
],
"author": "Mark Lagendijk <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/marklagendijk/lodash-deep/issues"
},
"homepage": "https://github.com/marklagendijk/lodash-deep"
}