-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
66 lines (66 loc) · 1.59 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
{
"name": "eslint-config-videojs",
"description": "An ESLint Shareable Config for video.js Standard Style.",
"version": "6.1.0",
"author": "Brightcove, Inc.",
"bugs": {
"url": "https://github.com/videojs/eslint-config-videojs/issues"
},
"homepage": "https://github.com/videojs/eslint-config-videojs",
"keywords": [
"videojs",
"standard",
"style checker",
"code style",
"code checker",
"code linter",
"style linter",
"simple",
"policy",
"style",
"code",
"lint",
"eslint",
"eslintconfig",
"jshint",
"jscs",
"hint",
"enforce",
"check",
"verify",
"quality",
"checker",
"code standards"
],
"license": "Apache-2.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/videojs/eslint-config-videojs.git"
},
"scripts": {
"lint": "eslint --config index.js index.js",
"test": "npm run lint",
"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": "vjsverify --verbose"
},
"lint-staged": {
"README.md": "doctoc --notitle",
"index.js": "eslint --config index.js --fix"
},
"devDependencies": {
"@videojs/generator-helpers": "^3.2.0",
"eslint": "^7.27.0",
"eslint-plugin-jsdoc": "^35.0.0",
"eslint-plugin-json-light": "^1.0.3",
"eslint-plugin-markdown": "^2.2.0",
"videojs-generator-verify": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}