This repository has been archived by the owner on Apr 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2.07 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "fragments",
"version": "1.0.0-beta.10",
"description": "fragments structures web applications with (request time) dependency injection",
"keywords": [
"framework",
"request",
"dependency",
"injection",
"structure",
"inversion",
"of",
"control",
"ioc",
"architecture",
"web",
"application"
],
"homepage": "http://github.com/snd/fragments",
"author": {
"name": "Maximilian Krüger",
"email": "[email protected]",
"url": "http://github.com/snd"
},
"bugs": {
"url": "http://github.com/snd/fragments/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/snd/fragments.git"
},
"license": "MIT",
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"basic-auth": "1.0.3",
"bcrypt": "0.8.5",
"bluebird": "~3.3.3",
"body-parser": "1.15.0",
"compression": "1.6.1",
"connect": "3.4.1",
"connect-redis": "3.0.2",
"cookie-parser": "1.4.1",
"express-jwt": "3.3.0",
"express-session": "1.13.0",
"helfer": "0.1.0",
"hinoki": "1.0.0-rc.8",
"is_js": "0.8.0",
"jsonwebtoken": "5.7.0",
"kup": "1.5.0",
"lodash": "4.6.1",
"node-uuid": "1.4.7",
"passage": "1.7.2",
"qs": "6.1.0",
"react": "0.14.7",
"react-dom": "0.14.7",
"react-kup": "0.5.2",
"redis": "~2.5.2",
"sequenz": "1.0.9",
"serve-static": "1.10.2",
"umgebung": "0.1.0",
"url-pattern": "~1.0.1",
"zuvor": "0.1"
},
"devDependencies": {
"codecov.io": "0.1.6",
"coffee-script": "1.10.0",
"stream-to-promise": "1.1.0",
"got": "~6.2.0",
"cookie": "0.2.3",
"tape": "~4.5.0",
"coffeetape": "1.0.1",
"istanbul": "0.4.2"
},
"scripts": {
"compile": "coffee --bare --compile --output lib/ src/",
"prepublish": "npm run compile",
"pretest": "npm run compile",
"test": "coffeetape test/*",
"test-with-coverage": "istanbul cover coffeetape test/* && cat ./coverage/coverage.json | ./node_modules/codecov.io/bin/codecov.io.js"
},
"main": "lib/fragments"
}