forked from GunioRobot/node-handlersocket
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1019 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1019 Bytes
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
{
"name": "node-handlersocket" ,
"version": "0.1.0",
"description": "HandlerSocket client for Node.js",
"keywords": [
"database",
"mysql",
"handlersocket"
],
"homepage": "http://github.com/koichik/node-handlersocket/",
"author": "Koichi Kobayashi <koichik@improvement.jp>",
"main": "./index.js",
"directories": {
"lib": "./lib",
"example": "./example"
},
"licenses": [
{
"type": "The MIT License",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"repositories": {
"type": "git",
"url": "http://github.com/koichik/node-handlersocket.git",
"private": "git@github.com:koichik/node-handlersocket.git",
"web": "http://github.com/koichik/node-handlersocket"
},
"engines": {"node": ">=0.6.0"},
"devDependencies": {
"vows" : "*",
"slide": "*"
},
"scripts": {
"pretest": "mysql test < sql/create.sql",
"test": "./node_modules/vows/bin/vows test/*.js",
"posttest" : "mysql test < sql/drop.sql"
}
}