-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 897 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
44
45
46
47
48
{
"author": {
"name": "Jordi Baylina",
"email": "jordi@baylina.cat"
},
"name": "syncorm",
"description": "Syncronous ORM",
"version": "0.1.54",
"repository": {
"type": "git",
"url": "https://github.com/jbaylina/syncorm.git"
},
"main": "./lib/syncorm",
"keywords": [
"orm",
"database",
"mysql",
"object",
"mapping"
],
"dependencies": {
"async": "~0.9.0",
"commander": "^2.7.1",
"events": "~1.0.2",
"lodash": "^3.10.1",
"mysql": "~2.6.2",
"pluralize": "^1.1.2",
"prompt": "^0.2.14",
"timezone": "0.0.41",
"uuid": "^3.0.0"
},
"devDependencies": {
"mocha": "*",
"heapdump": "^0.3.5"
},
"engines": {
"node": "*"
},
"scripts": {
"test": "node_modules/.bin/mocha --expose-gc"
},
"licenses": [
{
"type": "MIT",
"url": "http://jeditoolkit.com/LICENSE"
}
]
}