-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 928 Bytes
/
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
{
"name": "node-dotify",
"version": "1.1.0",
"description": "Convert javascript object to dot notation object",
"main": "dotify.js",
"repository": {
"type": "git",
"url": "git://github.com/GeenenTijd/dotify.git"
},
"author": {
"name": "Glenn Geenen",
"email": "[email protected]",
"web": "http://geenentijd.be"
},
"license": {
"type": "MIT"
},
"engines": {
"node": ">=0.10.0"
},
"bugs": {
"url": "https://github.com/GeenenTijd/dotify/issues"
},
"homepage": "https://github.com/GeenenTijd/dotify",
"scripts": {
"test": "./node_modules/.bin/istanbul cover --dir ./coverage ./node_modules/.bin/_mocha -- -R spec -t 10000 --recursive --slow 2"
},
"devDependencies": {
"mocha": "*",
"istanbul": "*"
},
"keywords": [
"mongoose",
"dot",
"notation",
"object",
"dotify"
],
"dependencies": {
"bson-objectid": "^1.3.1"
}
}