-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.23 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.23 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@magic/test",
"version": "0.3.7",
"author": "Wizards & Witches",
"description": "simple yet powerful unit testing library",
"license": "AGPL-3.0",
"homepage": "https://magic.github.io/test",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"t": "dist/bin/t.js",
"magic-test": "dist/bin/t.js",
"magic-test-native": "dist/bin/node-test-runner.js"
},
"scripts": {
"start": "node dist/bin/t.js -p",
"build": "tsc && npm run format",
"build:docs": "NODE_ENV=production magic build",
"prod": "NODE_ENV=production magic build serve",
"clean": "magic clean",
"serve": "magic serve",
"dev": "magic dev",
"test": "node dist/bin/t.js",
"test:native": "node --test dist/bin/node-test-runner.js --coverage && c8 report",
"test:ci": "node dist/bin/t.js -p",
"coverage": "node dist/bin/t.js",
"format": "f -w --exclude ./docs/",
"format:check": "f --exclude ./docs/",
"tsc": "tsc --noEmit",
"check": "tsc --noEmit",
"lint": "eslint"
},
"engines": {
"node": ">=22.18.0"
},
"engineStrict": true,
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/magic/test.git"
},
"bugs": {
"url": "https://github.com/magic/test/issues"
},
"dependencies": {
"@magic/cases": "0.0.11",
"@magic/cli": "0.0.53",
"@magic/deep": "0.1.20",
"@magic/error": "0.0.21",
"@magic/fs": "0.0.37",
"@magic/log": "0.1.21",
"@magic/types": "0.1.33",
"c8": "11.0.0",
"canvas": "3.2.3",
"happy-dom": "20.9.0",
"magic-string": "0.30.21"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@magic-modules/git-badges": "0.0.12",
"@magic-modules/light-switch": "0.0.12",
"@magic-modules/no-spy": "0.0.9",
"@magic-modules/pre": "0.0.12",
"@magic-themes/docs": "0.0.15",
"@magic/core": "0.0.156",
"@magic/format": "0.0.73",
"@types/node": "25.6.0",
"eslint": "10.2.1",
"prettier-plugin-svelte": "3.5.1",
"svelte": "5.55.4",
"typescript": "6.0.3",
"typescript-eslint": "8.58.2",
"vite": "8.0.8"
},
"contributors": [
{
"name": "jascha ehrenreich",
"github": "jaeh"
}
]
}