-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.65 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
{
"name": "jasmine-browser-runner",
"version": "5.0.0",
"description": "Serve and run your Jasmine specs in a browser",
"bin": "bin/jasmine-browser-runner",
"exports": "./index.js",
"files": [
"MIT.LICENSE",
"README.md",
"package.json",
"index.js",
"config.js.ejs",
"run.html.ejs",
"bin/*.js",
"lib/**/*.js",
"lib/examples/default_config.mjs",
"lib/examples/default_esm_config.mjs"
],
"scripts": {
"lint": "eslint && prettier --check --ignore-path=.styleIgnore \"lib/**/*.js\" \"spec/**/*.js\" index.js",
"test": "jasmine && npm run lint",
"cleanup": "prettier --write --ignore-path=.styleIgnore \"lib/**/*.js\" \"spec/**/*.js\" index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasmine/jasmine-browser-runner.git"
},
"keywords": [
"jasmine",
"testing",
"tdd"
],
"author": "Slackersoft",
"license": "MIT",
"bugs": {
"url": "https://github.com/jasmine/jasmine-browser-runner/issues"
},
"homepage": "https://github.com/jasmine/jasmine-browser-runner#readme",
"dependencies": {
"@jasminejs/reporters": "^1.1.0",
"ejs": "^6.0.1",
"glob": "^10.2.2 || ^11.0.3 || ^12.0.0 || ^13.0.0",
"selenium-webdriver": "^4.12.0",
"serve-static": "^2.2.0"
},
"peerDependencies": {
"jasmine-core": "^7.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.29.0",
"eslint": "^9.29.0",
"eslint-plugin-jasmine": "^4.2.2",
"globals": "^16.2.0",
"jasmine": "^7.0.0",
"jasmine-core": "^7.0.0",
"prettier": "^1.17.1"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
}
}