-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.78 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.78 KB
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
{
"name": "@olton/latte",
"version": "0.17.5",
"main": "src/index.js",
"bin": {
"latte": "cli/latte.js"
},
"types": "types/index.d.ts",
"type": "module",
"scripts": {
"pub": "npm publish --access public",
"test": "cross-env NODE_OPTIONS=\"--import tsx\" npx latte --progress=none",
"test:happy": "cross-env NODE_OPTIONS=\"--import tsx\" npx latte --dom --dom-env=happy-dom --progress=none",
"test:watch": "cross-env NODE_OPTIONS=\"--import tsx\" latte --watch"
},
"keywords": [
"javascript",
"typescript",
"test",
"framework",
"html",
"dom",
"browser",
"testing",
"latte"
],
"author": "Serhii Pimenov <serhii@pimenov.com.ua> (https://pimenov.com.ua)",
"license": "MIT",
"description": "Simple test framework for JavaScript and TypeScript with DOM supports",
"repository": {
"type": "git",
"url": "git+https://github.com/olton/latte.git"
},
"bugs": {
"url": "https://github.com/olton/latte/issues",
"email": "serhii@pimenov.com.ua"
},
"dependencies": {
"@happy-dom/global-registrator": "^18.0.1",
"@olton/terminal": "^0.6.0",
"chokidar": "^4.0.3",
"glob": "^11.0.3",
"global-jsdom": "^26.0.0",
"happy-dom": "^18.0.1",
"html-escaper": "^3.0.3",
"jsdom": "^26.1.0",
"puppeteer": "^24.19.0",
"table": "^6.9.0",
"whatwg-fetch": "^3.6.20",
"yargs": "^18.0.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"devDependencies": {
"cross-env": "^10.0.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"tsx": "^4.20.5"
}
}