forked from gnodi/danf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.46 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.46 KB
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
{
"name": "danf",
"description": "Javascript/Node OOP full-stack framework providing many features in order to produce an scalable, maintainable, testable and performant code",
"version": "0.2.0",
"author": "Thomas Prelot <tprelot@gmail.com>",
"contributors": [
{
"name": "Thomas Prelot",
"email": "tprelot@gmail.com"
}
],
"dependencies": {
"express": "4.10.*",
"send": "0.10.*",
"cookie-parser": "1.3.*",
"express-session": "1.9.*",
"express-error-handler": "1.0.*",
"escape-html": "1.0.*",
"parseurl": "1.3.*",
"utils-merge": "1.0.*",
"jade": "1.8.*",
"amdefine": "0.1.*",
"requirejs": "2.1.*",
"jquery": "2.1.*"
},
"devDependencies": {
"mocha": "2.0.*",
"supertest": "0.15.*"
},
"keywords": [
"danf",
"framework",
"full-stack",
"client",
"server",
"dependency",
"injection",
"node",
"nodejs",
"oop",
"object",
"class",
"classes",
"interface",
"inheritance",
"modular",
"module",
"performant",
"event",
"test"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "gnodi/danf"
},
"main": "index",
"scripts": {
"test": "make test"
},
"engines": {
"node": "*"
}
}