-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 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
{
"name": "roosevelt-website",
"description": "Website for Roosevelt MVC web framework.",
"author": "Roosevelt Framework Team <[email protected]>",
"contributors": [
{
"name": "Contributors",
"url": "https://github.com/rooseveltframework/roosevelt-website/graphs/contributors"
}
],
"version": "0.21.11",
"homepage": "https://github.com/rooseveltframework/roosevelt-website",
"license": "CC-BY-4.0",
"main": "build.js",
"readmeFilename": "README.md",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"roosevelt": "0.23.2",
"teddy": "0.6.19",
"less": "4.2.1"
},
"devDependencies": {
"http-server": "14.1.1",
"nodemon": "3.1.7",
"reload": "3.3.0",
"ava": "6.2.0",
"c8": "10.1.2",
"codecov": "3.8.3",
"eslint": "8.57.1",
"eslint-plugin-ava": "14.0.0",
"standard": "17.1.2"
},
"repository": {
"type": "git",
"url": "git://github.com/rooseveltframework/roosevelt-website.git"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": "latest"
},
"plugins": [
"ava"
],
"rules": {
"ava/no-only-test": "error"
}
},
"scripts": {
"build": "nodemon -e html,less,sass,scss,js,mjs,json build.js",
"build-dev": "nodemon -e html,less,sass,scss,js,mjs,json build.js --development-mode",
"build-once": "node build.js",
"build-dev-once": "node build.js --development-mode",
"start": "npm run start-reload",
"start-reload": "node build.js && ./node_modules/reload/bin/reload -p 4337 -d public/",
"start-static": "node build.js && http-server public/",
"codecov": "codecov",
"coverage": "c8 --reporter=text --reporter=lcov ava",
"lint": "standard && eslint test/test.js",
"test": "ava"
},
"funding": "https://www.paypal.com/donate/?hosted_button_id=2L2X8GRXZCGJ6"
}