-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
130 lines (130 loc) · 2.95 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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "jasmine-browser-runner",
"version": "3.0.0-beta.1",
"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": {
"posttest": "eslint bin/* lib spec index.js --ignore-path=.styleIgnore && prettier --check --ignore-path=.styleIgnore \"lib/**/*.js\" \"spec/**/*.js\" index.js",
"test": "jasmine",
"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": {
"ejs": "^3.1.6",
"express": "^5.0.0",
"glob": "^10.0.0",
"selenium-webdriver": "^4.12.0"
},
"peerDependencies": {
"jasmine-core": "^5.0.0"
},
"devDependencies": {
"eslint": "^8.50.0",
"eslint-plugin-jasmine": "^4.1.3",
"jasmine": "^5.0.0",
"jasmine-core": "^5.0.0",
"prettier": "^1.17.1",
"shelljs": "^0.8.3",
"temp": "^0.9.4"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5"
},
"eslintConfig": {
"env": {
"commonjs": true,
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly",
"expectAsync": "readonly"
},
"parserOptions": {
"ecmaVersion": 2022
},
"plugins": [
"jasmine"
],
"rules": {
"quotes": [
"error",
"single",
{
"avoidEscape": true
}
],
"no-unused-vars": [
"error",
{
"args": "none"
}
],
"block-spacing": "error",
"comma-dangle": [
"error",
{
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "never"
}
],
"eqeqeq": "error",
"func-call-spacing": [
"error",
"never"
],
"key-spacing": "error",
"no-tabs": "error",
"no-trailing-spaces": "error",
"no-whitespace-before-property": "error",
"semi": [
"error",
"always"
],
"space-before-blocks": "error",
"no-console": "off",
"no-var": "error"
},
"overrides": [
{
"files": "spec/**/*.js",
"env": {
"jasmine": true
}
}
]
}
}