-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
42 lines (42 loc) · 1.21 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
{
"name": "web-test-runner-jasmine",
"version": "0.0.6",
"description": "Plugin for Jasmine and Web Test Runner",
"main": "./index.js",
"module": "./index.js",
"typings": "./index.d.ts",
"type": "module",
"files": [
"*"
],
"scripts": {
"ci": "npm run clean && npm run build && npm run test",
"clean": "del ./dist",
"test": "web-test-runner --coverage",
"build": "tsc --project ./tsconfig.lib.json && cpy ./package.json dist/lib/ && cpy ./README.md dist/lib/",
"publish": "cd ./dist/lib && npm 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",
"devDependencies": {
"@types/jasmine": "^5.1.4",
"@web/dev-server-esbuild": "^1.0.2",
"@web/test-runner": "^0.18.1",
"@web/test-runner-playwright": "^0.11.0",
"cpy-cli": "^5.0.0",
"del-cli": "^5.1.0",
"jasmine": "^5.1.0",
"typescript": "^5.4.5"
},
"dependencies": {
"@web/test-runner": "^0.18.1"
}
}