-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 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
{
"name": "matador",
"description": "an MVC framework for Node",
"version": "2.1.0",
"homepage": "https://github.com/Medium/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/Medium/matador.git"
},
"engines": {
"node": ">=0.10"
},
"bin": {
"matador": "bin/matador.js"
},
"dependencies": {
"body-parser": "^1.13.1",
"connect": "^3.4.0",
"cookies": "^0.5.0",
"cookie-parser": "^1.3.5",
"errorhandler": "^1.4.0",
"qs": "^3.1.0",
"soynode": "^2.1.0",
"serve-static": "^1.10.0",
"useragent": "^2.1.7",
"valentine": "1.8.0"
},
"devDependencies": {
"jshint": "2.0.1",
"falkor": "~1.2.9",
"nodeunit": "~0.8.0",
"semver": "~4.2.0"
},
"scripts": {
"test": "node_modules/nodeunit/bin/nodeunit tests/functional/ tests/unit/ && ./runIntegrationTests.sh",
"lint": "node_modules/jshint/bin/hint src/ --reporter dev/reporter.js"
}
}