-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 1.64 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "nosql-stream",
"version": "2.0.3",
"description": "add the read/write streamable ability to abstract-nosql database.",
"homepage": "https://github.com/snowyu/nosql-stream",
"main": "./index",
"files": [
"README.md",
"LICENSE-MIT",
"index.js",
"test",
"abstract",
"src",
"lib"
],
"scripts": {
"test": "grunt test"
},
"dependencies": {
"abstract-iterator": ">=0.10.0",
"abstract-nosql": ">=2.0.0",
"abstract-object": "~1.8.1",
"batch-write-stream": "~0.1.6",
"minimatch": "~2.0.1",
"readable-stream": "~1.0.33"
},
"devDependencies": {
"chai": "~1.10.0",
"coffee-script": "~1.8.0",
"connect-livereload": "*",
"grunt": "*",
"grunt-contrib-clean": "*",
"grunt-contrib-coffee": "*",
"grunt-contrib-concat": "*",
"grunt-contrib-copy": "*",
"grunt-contrib-jshint": "*",
"grunt-contrib-uglify": "*",
"grunt-contrib-watch": "*",
"grunt-mocha-test": "~0.12.4",
"grunt-newer": "*",
"grunt-release": "*",
"grunt-rev": "*",
"grunt-saucelabs": "*",
"grunt-usemin": "*",
"nosql-memdb": "~2.0.0",
"mocha": "~2.0.1",
"sinon": "~1.12.2",
"sinon-chai": "~2.6.0",
"source-map-support": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/snowyu/nosql-stream"
},
"keywords": [
"abstract",
"object",
"class",
"stream",
"nosql",
"event",
"database",
"writable",
"readable"
],
"author": {
"name": "Riceball LEE",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/snowyu/nosql-stream/issues"
}
}