-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
70 lines (70 loc) · 1.71 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
{
"name": "karma-sharding",
"version": "4.4.0",
"description": "Karma plugin to allow tests to be distributed across multiple browsers",
"engines": {
"node": ">=6"
},
"main": "index.js",
"directories": {
"lib": "./lib",
"test": "./test"
},
"scripts": {
"clean": "if [ -d './coverage' ]; then rm -rf './coverage'; fi",
"karma": "./node_modules/.bin/karma start",
"lint": "./node_modules/.bin/eslint --fix --config .eslintrc.json lib/\\*.js test/\\*.js index.js",
"test": "npm run clean && npm run lint && npm run karma"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rschuft/karma-sharding.git"
},
"keywords": [
"karma",
"karma-coverage",
"karma-sharding",
"karma-plugin"
],
"contributors": [
{
"name": "Ryan Schuft",
"email": "ryan.schuft@gmail.com",
"url": "https://github.com/rschuft"
},
{
"name": "Mikhail Zheludev",
"email": "jbubsk@gmail.com",
"url": "https://github.com/jbubsk"
}
],
"maintainers": [
{
"name": "Ryan Schuft",
"email": "ryan.schuft@gmail.com",
"url": "https://github.com/rschuft"
}
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/rschuft/karma-sharding/issues"
},
"homepage": "https://github.com/rschuft/karma-sharding#readme",
"optionalDependencies": {
"karma-coverage": "^1.1.1"
},
"dependencies": {
"lodash": "^4.17.4"
},
"devDependencies": {
"eslint": "^4.16.0",
"eslint-plugin-security": "^1.4.0",
"jasmine-core": "^2.9.1",
"karma": "^2.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.0"
}
}