-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
50 lines (50 loc) · 1.2 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
48
49
50
{
"name": "diskdb",
"version": "0.1.17",
"main": "./diskdb.js",
"description": "A Lightweight Disk based JSON Database with a MongoDB like API",
"homepage": "http://arvindr21.github.io/diskDB",
"bugs": "https://github.com/arvindr21/diskdb/issues",
"author": {
"name": "Arvind Ravulavaru",
"email": "[email protected]",
"url": "http://thejackalofjavascript.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/arvindr21/diskdb"
},
"license": "MIT",
"files": [
"lib"
],
"keywords": [
"diskDB",
"JSON",
"Database",
"file system",
"CRUD",
"lightweight"
],
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-polyfill": "^6.16.0",
"babel-preset-latest": "^6.16.0",
"grunt": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-nodeunit": "^1.0.0",
"grunt-contrib-watch": "^1.0.0",
"jshint-stylish": "^0.2.0",
"load-grunt-tasks": "^0.4.0",
"time-grunt": "^0.3.1"
},
"dependencies": {
"chalk": "^0.4.0",
"merge": "^1.1.3",
"uuid": "^3.0.0"
},
"scripts": {
"compile": "node_modules/.bin/babel lib --out-dir dist",
"test": "npm run-script compile && grunt"
}
}