forked from rooseveltframework/roosevelt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 2.65 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "roosevelt",
"description": "Roosevelt MVC web framework",
"author": "Roosevelt Framework Team <rooseveltframework@gmail.com>",
"contributors": [
{
"name": "Contributors",
"url": "https://github.com/rooseveltframework/roosevelt/graphs/contributors"
}
],
"version": "0.19.12",
"files": [
"defaultErrorPages",
"lib",
"roosevelt.js"
],
"homepage": "https://github.com/rooseveltframework/roosevelt",
"license": "CC-BY-4.0",
"main": "roosevelt.js",
"readmeFilename": "README.md",
"engines": {
"node": ">=14.0.0"
},
"engineStrict": true,
"dependencies": {
"app-module-path": "~2.2.0",
"check-dependencies": "~1.1.0",
"clean-css": "~5.3.0",
"@colors/colors": "~1.5.0",
"compression": "~1.7.4",
"cookie-parser": "~1.4.6",
"es6-template-strings": "~2.0.1",
"execa": "~5.1.1",
"express": "~4.17.3",
"express-html-validator": "~0.2.0",
"formidable": "~1.2.6",
"fs-extra": "~10.1.0",
"helmet": "~5.0.2",
"html-minifier": "~4.0.0",
"klaw": "~4.0.1",
"klaw-sync": "~6.0.0",
"method-override": "~3.0.0",
"morgan": "~1.10.0",
"page": "~1.11.6",
"page-express-mapper": "~2.0.2",
"parent-require": "~1.0.0",
"reload": "~3.2.0",
"roosevelt-logger": "~0.2.3",
"serve-favicon": "~2.5.0",
"source-configs": "~0.3.6",
"toobusy-js": "~0.5.1",
"webpack": "~5.72.0"
},
"devDependencies": {
"c8": "~7.11.0",
"codecov": "~3.8.3",
"eslint": "~8.13.0",
"eslint-plugin-mocha": "~10.0.3",
"less": "~4.1.2",
"mocha": "~9.2.1",
"proxyquire": "~2.1.3",
"sass": "~1.39.2",
"sinon": "~13.0.1",
"standard": "~17.0.0",
"stylus": "~0.57.0",
"supertest": "~6.2.2",
"teddy": "~0.5.9"
},
"repository": {
"type": "git",
"url": "git://github.com/rooseveltframework/roosevelt.git"
},
"keywords": [
"roosevelt.js",
"teddy.js",
"node.js",
"roosevelt",
"teddy",
"mvc",
"Express",
"Express.js",
"framework",
"web framework"
],
"preferGlobal": true,
"_from": "roosevelt@*",
"gitHead": "",
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2018
},
"plugins": [
"mocha"
],
"rules": {
"mocha/no-exclusive-tests": "error"
}
},
"scripts": {
"codecov": "codecov",
"coverage": "c8 --reporter=text --reporter=lcov mocha --timeout 60000 test/*.js",
"lint": "standard && eslint test/*.js",
"test": "mocha --timeout 60000 test/*.js",
"test-debug": "mocha --inspect-brk --timeout 60000 test/*.js"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/kethinov"
}
}