-
Notifications
You must be signed in to change notification settings - Fork 182
/
package.json
62 lines (62 loc) · 1.35 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
{
"name": "compound",
"version": "1.2.1",
"author": "Anatoliy Chakkaev",
"contributors": [
"Anatoliy Chakkaev <[email protected]> (http://anatoliy.in)",
"Sascha Gehlich <[email protected]> (http://filshmedia.net)"
],
"description": "CompoundJS - MVC framework for NodeJS",
"keywords": [
"mvc",
"web",
"framework",
"rails",
"express",
"railway"
],
"url": "http://compoundjs.com",
"engines": [
"node >= 0.8.0"
],
"main": "lib/server/compound.js",
"bin": {
"compound": "bin/compound.js",
"rw": "bin/compound.js"
},
"man": [
"./man/compound.1",
"./man/controller.3",
"./man/changelog.3",
"./man/railway-changelog.3",
"./man/helpers.3",
"./man/routing.3"
],
"dependencies": {
"yaml-js": ">= 0.0.2",
"coffee-script": "1.7.x",
"ejs-ext": ">= 0.1.4-2",
"jade-ext": "= 0.0.7",
"railway-routes": ">= 0.0.10",
"kontroller": ">= 0.0.15",
"inflection": "~1.2.5"
},
"repository": {
"type": "git",
"url": "https://github.com/1602/compound.git"
},
"devDependencies": {
"jugglingdb": ">= 0.1.25",
"nodeunit": "latest",
"semicov": "*",
"marked": ">= 0.2.6",
"express": "4.x",
"should": "1.2.2",
"mocha": "1.8.1",
"jshint": "^2.6.3"
},
"scripts": {
"test": "make test",
"prepublish": "make build"
}
}