forked from Medium/matador
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "matador"
, "description": "an MVC framework for Node"
, "version": "1.0.30-beta"
, "homepage": "https://github.com/Obvious/matador"
, "main": "src/matador.js"
, "authors": [
"Dustin Diaz <dustin@obvious.com> (https://github.com/ded)"
, "Dustin Senos <ds@obvious.com> (https://github.com/dustinsenos)"
, "Jeremy Stanley <jeremy@obvious.com> (https://github.com/azulus)"
, "Rael Dornfest <rael@obvious.com> (https://github.com/raelity)"
]
, "repository": {
"type": "git"
, "url": "https://github.com/Obvious/matador.git"
}
, "engines": {
"node": ">=0.6.0 <0.7.0"
}
, "bin": {
"matador": "bin/matador.js"
}
, "dependencies": {
"express": "2.5.9"
, "valentine": "*"
, "klass": "*"
, "colors": "*"
, "hogan.js": "*"
, "optimist": "*"
, "uglify-js": ">=1.2.5"
}
, "devDependencies": {
"jshint": "0.5.8"
}
, "scripts": {
"lint": "node_modules/jshint/bin/hint src/ --reporter dev/reporter.js"
}
}