forked from mysqljs/mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 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
{
"name": "mysql",
"description": "A node.js driver for mysql. It is written in JavaScript, does not require compiling, and is 100% MIT licensed.",
"version": "2.3.0",
"license": "MIT",
"author": "Felix Geisendörfer <[email protected]> (http://debuggable.com/)",
"contributors": [
{
"name": "Andrey Sidorov",
"email": "[email protected]"
},
{
"name": "Douglas Christopher Wilson",
"email": "[email protected]"
},
{
"name": "Diogo Resende",
"email": "[email protected]"
}
],
"homepage": "https://github.com/felixge/node-mysql",
"repository": {
"type": "git",
"url": "https://github.com/felixge/node-mysql"
},
"main": "./index",
"scripts": {
"test": "node test/run.js"
},
"dependencies": {
"bignumber.js": "1.4.0",
"readable-stream": "~1.1.13",
"require-all": "0.0.8"
},
"devDependencies": {
"underscore": "1.6.0",
"urun": "0.0.8",
"utest": "0.0.8"
},
"engines": {
"node": ">= 0.8"
}
}