UNPKG

1.29 kBJSONView Raw
1{
2 "name": "mesa",
3 "version": "0.7.2",
4 "description": "simple elegant sql for nodejs",
5 "keywords": ["sql", "postgres", "dao", "model", "orm", "fluid", "data", "data layer"],
6 "homepage": "http://github.com/snd/mesa",
7 "author": {
8 "name": "Maximilian Krüger",
9 "email": "kruemaxi@gmail.com",
10 "url": "http://github.com/snd"
11 },
12 "bugs": {
13 "url": "http://github.com/snd/mesa/issues",
14 "email": "kruemaxi@gmail.com"
15 },
16 "repository": {
17 "type": "git",
18 "url": "git://github.com/snd/mesa.git"
19 },
20 "licenses": {
21 "type": "MIT",
22 "url": "git://github.com/snd/mesa/LICENSE"
23 },
24 "engines": {
25 "node": ">=0.8.5"
26 },
27 "dependencies": {
28 "mohair": "0.11.0",
29 "underscore": "1.4.4"
30 },
31 "devDependencies": {
32 "coffee-script": "1.6.3",
33 "nodeunit": "0.8"
34 },
35 "main": "src/postgres",
36 "scripts": {
37 "prepublish": "coffee --bare --compile --output src src/*.coffee",
38 "postpublish": "rm src/*.js",
39 "pretest": "coffee --bare --compile --output src src/*.coffee && coffee --bare --compile --output test test/*.coffee",
40 "posttest": "rm src/*.js && rm test/*.js",
41 "test": "nodeunit test/*.js"
42 }
43}