-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
76 lines (76 loc) · 1.73 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
{
"name": "mkroosevelt",
"description": "Command line application for creating Roosevelt apps",
"author": "Roosevelt Framework Team <[email protected]>",
"contributors": [
{
"name": "Contributors",
"url": "https://github.com/rooseveltframework/mkroosevelt/graphs/contributors"
}
],
"version": "0.22.1",
"files": [
"mkroosevelt.js"
],
"homepage": "https://github.com/rooseveltframework/mkroosevelt",
"license": "CC-BY-4.0",
"main": "mkroosevelt.js",
"bin": {
"mkroosevelt": "mkroosevelt.js"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"generator-roosevelt": "0.22.3",
"inquirer": "12.3.0",
"yeoman-environment": "3.19.3"
},
"devDependencies": {
"c8": "10.1.3",
"codecov": "3.8.3",
"eslint": "8.57.1",
"eslint-plugin-mocha": "10.4.1",
"fs-extra": "11.2.0",
"mocha": "11.0.1",
"standard": "17.1.2"
},
"repository": {
"type": "git",
"url": "git://github.com/rooseveltframework/mkroosevelt.git"
},
"keywords": [
"roosevelt.js",
"teddy.js",
"node.js",
"roosevelt",
"teddy",
"mvc",
"yeoman-generator"
],
"preferGlobal": true,
"_from": "mkroosevelt@*",
"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/",
"lint": "eslint ./test && standard",
"test": "mocha test/",
"test-debug": "mocha --inspect-brk test/"
},
"funding": "https://www.paypal.com/donate/?hosted_button_id=2L2X8GRXZCGJ6"
}