-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
77 lines (77 loc) · 1.83 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
{
"name": "generator-roosevelt",
"description": "Yeoman generator for Roosevelt apps",
"author": "Roosevelt Framework Team <[email protected]>",
"contributors": [
{
"name": "Contributors",
"url": "https://github.com/rooseveltframework/generator-roosevelt/graphs/contributors"
}
],
"version": "0.22.3",
"files": [
"generators"
],
"homepage": "https://github.com/rooseveltframework/generator-roosevelt",
"license": "CC-BY-4.0",
"main": "generators/app/index.js",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"gulp-beautify": "3.0.0",
"gulp-filter": "9.0.1",
"selfsigned": "2.4.1",
"terminal-link": "3.0.0",
"yeoman-generator": "5.10.0"
},
"devDependencies": {
"c8": "10.1.2",
"codecov": "3.8.3",
"eslint": "9.14.0",
"eslint-plugin-mocha": "10.5.0",
"mocha": "10.8.2",
"roosevelt": "0.23.2",
"standard": "17.1.2",
"yeoman-environment": "3.19.3",
"yeoman-test": "8.3.0"
},
"repository": {
"type": "git",
"url": "git://github.com/rooseveltframework/generator-roosevelt.git"
},
"keywords": [
"roosevelt.js",
"teddy.js",
"node.js",
"roosevelt",
"teddy",
"mvc",
"yeoman-generator"
],
"preferGlobal": true,
"_from": "generator-roosevelt@*",
"gitHead": "",
"eslintConfig": {
"parserOptions": {
"ecmaVersion": "latest"
},
"plugins": [
"mocha"
],
"rules": {
"mocha/no-exclusive-tests": "error"
}
},
"mocha": {
"timeout": "10s"
},
"scripts": {
"codecov": "codecov",
"coverage": "c8 --reporter=text --reporter=lcov mocha test/unit",
"lint": "eslint ./test && standard",
"test": "mocha test/unit",
"test-debug": "mocha --inspect-brk test/unit"
},
"funding": "https://www.paypal.com/donate/?hosted_button_id=2L2X8GRXZCGJ6"
}