forked from GeenenTijd/dotify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 898 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
{
"name": "node-dotify",
"version": "1.0.2",
"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": {
"istanbul": "*",
"mocha": "*"
},
"keywords": [
"mongoose",
"dot",
"notation",
"object",
"dotify"
],
"dependencies": {
}
}