-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 1.78 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
{
"name": "videojs-generate-karma-config",
"version": "8.1.0",
"description": "Generate a standard karma config, so that plugins don't need the same script in every repository.",
"main": "index.js",
"scripts": {
"lint": "vjsstandard",
"test": "npm run test:unit && npm run test:verify",
"test:unit": "npm run lint",
"test:verify": "vjsverify --skip-syntax --verbose",
"preversion": "npm test",
"version": "is-prerelease || npm run update-changelog && git add CHANGELOG.md",
"update-changelog": "conventional-changelog -p videojs -i CHANGELOG.md -s",
"prepublishOnly": "npm run test:verify"
},
"lint-staged": {
"*.js": "vjsstandard --fix",
"README.md": "doctoc"
},
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/videojs/videojs-generate-karma-config"
},
"author": "Brandon Casey <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/videojs/videojs-generate-karma-config/issues"
},
"homepage": "https://github.com/videojs/videojs-generate-karma-config",
"dependencies": {
"is-ci": "^3.0.1",
"karma-browserstack-launcher": "~1.4.0",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-detect-browsers": "^2.3.3",
"karma-firefox-launcher": "^2.1.3",
"karma-ie-launcher": "^1.0.0",
"karma-qunit": "^4.2.0",
"karma-safari-applescript-launcher": "^0.1.1",
"karma-static-server": "^1.0.0",
"karma-teamcity-reporter": "^1.1.0",
"qunit": "~2.16.0"
},
"peerDependencies": {
"karma": "*"
},
"devDependencies": {
"@videojs/generator-helpers": "^3.2.0",
"videojs-generator-verify": "^4.1.3",
"videojs-standard": "^9.1.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}