-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 809 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 809 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
40
{
"name": "mapper",
"version": "0.2.5",
"description": "Lightweight, blazing fast MySQL data mapper.",
"tags": [
"odm",
"mysql",
"mysql-libmysqlclient"
],
"author": {
"name": "Mario Gutierrez",
"email": "mario@mgutz.com"
},
"homepage": "https://github.com/mgutz/mapper",
"dependencies": {
"async": "~0.1.22",
"mysql-libmysqlclient": "~1.5.1",
"lodash": "~1.0.0-rc.3"
},
"devDependencies": {
"mysql": "2.0.0-alpha5",
"underscore.string": ">= 2.1.1",
"mocha": "~1.7.4",
"chai": "~1.4.2",
"express": "~3.0.6"
},
"main": "index",
"scripts": {
"test": "make test"
},
"engines": {
"node": ">= 0.6"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/mgutz/mapper/raw/master/LICENSE"
}
]
}