-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1 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
{
"name": "key-path",
"version": "0.3.2",
"description": "Deep property accessors for JavaScript objects.",
"homepage": "https://github.com/CardForest/key-path",
"author": {
"name": "Amit Portnoy",
"email": "[email protected]",
"url": "https://github.com/amitport"
},
"repository": {
"type": "git",
"url": "https://github.com/CardForest/key-path.git"
},
"license": "BSD",
"files": [
"index.js"
],
"keywords": [
"key-path",
"deep",
"key",
"property",
"pick",
"get",
"extract"
],
"dependencies": {},
"devDependencies": {
"browserify": "^10.0.0",
"chai": "^2.3.0",
"grunt-cli": "^0.1.13",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-nodeunit": "^0.4.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha-cli": "^1.13.0",
"jshint-stylish": "^1.0.1",
"load-grunt-tasks": "^3.1.0",
"time-grunt": "^1.1.1"
},
"scripts": {
"test": "grunt",
"browser": "browserify index.js > browser.js"
}
}