-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.73 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.73 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
{
"name": "web-test-runner-jasmine",
"version": "0.2.0",
"description": "Plugin for Jasmine and Web Test Runner",
"type": "module",
"files": [
"dist/",
"CHANGELOG.md",
"README.md",
"package.json"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"packageManager": "pnpm@10.11.0",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"ci": "pnpm run clean && pnpm run build && pnpm run test",
"setup": "curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash && unset npm_config_prefix && . ~/.nvm/nvm.sh && nvm install && nvm use && npm install -g pnpm && pnpm run clean && pnpm i --frozen-lockfile && pnpm dlx playwright install chromium --with-deps chromium && pnpm exec playwright install",
"clean": "rm -rf ./dist",
"test": "web-test-runner --coverage",
"build": "tsc --project ./tsconfig.lib.json && node ./esbuild.mjs",
"release": "cd ./dist && pnpm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blueprintui/web-test-runner-jasmine.git"
},
"author": "Crylan Software",
"license": "MIT",
"bugs": {
"url": "https://github.com/blueprintui/web-test-runner-jasmine/issues"
},
"homepage": "https://github.com/blueprintui/web-test-runner-jasmine",
"dependencies": {
"@web/test-runner": "^0.20.2",
"@web/test-runner-core": "^0.13.4"
},
"peerDependencies": {
"jasmine-core": "^6.0.1"
},
"devDependencies": {
"@types/jasmine": "^6.0.0",
"@web/dev-server-esbuild": "1.0.4",
"@web/test-runner-playwright": "0.11.1",
"esbuild": "0.27.2",
"jasmine-core": "^6.0.1",
"playwright": "1.58.0",
"typescript": "5.9.3"
}
}