-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
89 lines (89 loc) · 2.39 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
{
"name": "teddy",
"description": "Teddy Templating Engine",
"author": "Roosevelt Framework Team <[email protected]>",
"contributors": [
{
"name": "Contributors",
"url": "https://github.com/rooseveltframework/teddy/graphs/contributors"
}
],
"version": "0.6.19",
"files": [
"dist"
],
"type": "module",
"exports": {
".": {
"import": "./dist/teddy.mjs",
"require": "./dist/teddy.cjs"
}
},
"homepage": "https://github.com/rooseveltframework/teddy",
"license": "CC-BY-4.0",
"main": "dist/teddy.js",
"readmeFilename": "README.md",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"cheerio": "1.0.0"
},
"devDependencies": {
"@playwright/test": "1.49.1",
"c8": "10.1.3",
"codecov": "3.8.3",
"cross-env": "7.0.3",
"eslint": "9.17.0",
"eslint-plugin-html": "8.1.2",
"eslint-plugin-mocha": "10.5.0",
"mocha": "11.0.1",
"standard": "17.1.2",
"terser-webpack-plugin": "5.3.11",
"webpack": "5.97.1",
"webpack-cli": "6.0.1"
},
"standard": {
"ignore": [
"test/client.js"
]
},
"c8": {
"exclude": [
"dist/**",
"test/**",
"playwright.config.js"
],
"reporter": [
"text",
"lcov"
]
},
"scripts": {
"build": "webpack",
"coverage": "npm run coverage-server && npm run coverage-client",
"coverage-server": "npm run build && cross-env NODE_ENV=cover c8 mocha --timeout 60000 test/loaders/mocha.js",
"coverage-client": "npm run build && cross-env NODE_ENV=cover c8 --include=dist/teddy.js playwright test",
"lint": "standard && eslint ./test && standard --plugin html *.html",
"lint-fix": "standard --fix && eslint ./test && standard --plugin html *.html --fix",
"test": "npm run test-server && npm run test-client",
"t": "npm run test-server && npm run test-client",
"test-client": "npm run build && playwright test",
"test-server": "npm run build && cross-env NODE_ENV=test mocha --timeout 60000 test/loaders/mocha.js",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/rooseveltframework/teddy.git"
},
"keywords": [
"teddy.js",
"node.js",
"teddy",
"template",
"view"
],
"_from": "teddy@*",
"gitHead": "1dbbc4c73d7c8878cbe7fc0ba527c91018b4cea7",
"funding": "https://www.paypal.com/donate/?hosted_button_id=2L2X8GRXZCGJ6"
}