-
-
Notifications
You must be signed in to change notification settings - Fork 653
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.36 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.36 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
{
"name": "unit-tests",
"private": "true",
"description": "Jest unit tests for Shepherd",
"repository": {
"type": "git",
"url": "git+https://github.com/shipshapecode/shepherd.git"
},
"license": "MIT",
"type": "module",
"scripts": {
"lint:js": "eslint .",
"rewrite-paths": "replace 'SF:.*src' 'SF:src' coverage/lcov.info",
"test:ci": "vitest run --coverage",
"test:watch": "vitest",
"view-coverage": "http-server -p 9003 ./coverage/lcov-report -o"
},
"devDependencies": {
"@floating-ui/dom": "^1.6.10",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/svelte": "^5.2.9",
"@vitest/coverage-v8": "^4.0.16",
"@vitest/expect": "^4.0.8",
"autoprefixer": "^10.4.22",
"del": "^7.1.0",
"eslint": "^8.57.1",
"eslint-plugin-vitest": "^0.5.4",
"happy-dom": "^16.4.1",
"http-server": "^14.1.1",
"jsdom": "^27.4.0",
"lodash": "^4.17.23",
"postcss": "^8.5.6",
"prettier": "3.3.3",
"replace": "^1.2.2",
"resize-observer-polyfill": "^1.5.1",
"shepherd.js": "workspace:*",
"start-server-and-test": "^2.1.3",
"svelte": "^5.39.7",
"svelte-preprocess": "^6.0.3",
"typescript": "^5.9.3",
"vite": "^7.2.2",
"vitest": "^4.0.16"
},
"packageManager": "pnpm@9.15.4",
"engines": {
"node": "18.* || >= 20"
}
}