forked from Medium/matador
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.11 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
{
"name": "matador",
"description": "an MVC framework for Node",
"version": "1.1.28",
"homepage": "https://github.com/Obvious/matador",
"main": "src/matador.js",
"authors": [
"Dustin Diaz <[email protected]> (https://github.com/ded)",
"Dustin Senos <[email protected]> (https://github.com/dustinsenos)",
"Jeremy Stanley <[email protected]> (https://github.com/azulus)",
"Rael Dornfest <[email protected]> (https://github.com/raelity)"
],
"repository": {
"type": "git",
"url": "https://github.com/Obvious/matador.git"
},
"engines": {
"node": ">=0.10"
},
"bin": {
"matador": "bin/matador.js"
},
"dependencies": {
"connect": "2.3.3",
"valentine": "*",
"klass": "*",
"colors": "*",
"optimist": "*",
"soynode": "~0.2.0",
"nodeunit": "~0.8.0",
"useragent": "~2.0.6"
},
"devDependencies": {
"jshint": "2.0.1",
"falkor": "~1.2.9"
},
"scripts": {
"test": "node_modules/nodeunit/bin/nodeunit tests/functional/ tests/unit/ && ./runIntegrationTests.sh",
"lint": "node_modules/jshint/bin/hint src/ --reporter dev/reporter.js"
}
}