-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
82 lines (82 loc) · 1.95 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "azul",
"version": "0.0.1-alpha.15",
"description": "Elegant ORM for Node.js",
"homepage": "https://github.com/wbyoung/azul",
"bugs": {
"url": "https://github.com/wbyoung/azul/issues"
},
"main": "index.js",
"bin": {
"azul": "./bin/azul"
},
"scripts": {
"test": "jshint . && jscs . && istanbul cover node_modules/.bin/_mocha --report html --",
"test-travis": "jshint . && jscs . && istanbul cover node_modules/.bin/_mocha --report lcovonly --",
"docs": "./docs/scripts/build && ./docs/scripts/deploy"
},
"files": [
"index.js",
"lib",
"bin",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git://github.com/wbyoung/azul.git"
},
"keywords": [
"postgres",
"mysql",
"sqlite",
"pg",
"orm",
"database",
"sql"
],
"author": "Whitney Young",
"license": "MIT",
"dependencies": {
"bluebird": "^2.3.5",
"chalk": "^1.0.0",
"commander": "^2.6.0",
"corazon": "^0.1.1",
"generic-pool": "^2.1.1",
"interpret": "^0.6.0",
"liftoff": "^2.0.0",
"lodash": "^3.0.0",
"maguey": "^0.0.2",
"minimist": "^1.1.0",
"tildify": "^1.0.0",
"underscore.string": "^3.0.0",
"v8flags": "^2.0.2"
},
"devDependencies": {
"azul-chai": "^0.1.0",
"chai": "^3.3.0",
"chai-also": "^0.1.0",
"chai-as-promised": "^5.0.0",
"chai-properties": "^1.2.0",
"cheerio": "^0.19.0",
"ink-docstrap": "^0.5.2",
"istanbul": "^0.3.0",
"jscs": "^2.2.1",
"jshint": "^2.8.0",
"maguey-chai": "^0.3.4",
"metalsmith": "^2.1.0",
"metalsmith-markdown": "^0.2.1",
"metalsmith-metallic": "^0.3.1",
"metalsmith-sass": "^1.0.0",
"metalsmith-serve": "^0.0.4",
"metalsmith-templates": "^0.7.0",
"metalsmith-watch": "^1.0.0",
"mocha": "^2.0.0",
"mysql": "^2.5.2",
"pg": "^4.1.1",
"semver": "^5.0.3",
"sinon": "^1.10.3",
"sinon-chai": "^2.5.0",
"sqlite3": "^3.0.2",
"swig": "^1.4.2"
}
}