-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
43 lines (43 loc) · 876 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
43
{
"name": "streamsql",
"version": "0.8.5",
"description": "Streaming SQL ORM",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"concat-stream": "~1.1.0",
"map-stream": "~0.0.3",
"xtend": "~2.1.1",
"bluebird": "~1.2.0"
},
"devDependencies": {
"tap": "~0.4.4",
"jshint": "~2.3.0",
"sqlite3": "~2.1.19",
"mysql": "~2.0.0-alpha9"
},
"scripts": {
"test": "npm run lint && tap test/*.test.js",
"lint": "jshint index.js lib/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/brianloveswords/streamsql.git"
},
"keywords": [
"database",
"streams",
"streaming",
"mysql",
"sqlite3",
"sqlite",
"orm"
],
"author": "Brian J Brennan",
"license": "MIT",
"bugs": {
"url": "https://github.com/brianloveswords/streamsql/issues"
}
}