-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
80 lines (80 loc) · 1.83 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
{
"name": "videojs-standard",
"description": "JavaScript style for plugins and tools in the video.js ecosystem.",
"version": "9.1.0",
"author": "Brightcove, Inc.",
"scripts": {
"lint": "./cli.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",
"postinstall": "node remove-cache.js",
"prepublishOnly": "vjsverify --skip-syntax --skip-require --verbose"
},
"lint-staged": {
"*.js": "./cli.js --fix",
"README.md": "doctoc --no-title"
},
"bin": {
"vjsstandard": "./cli.js"
},
"bugs": {
"url": "https://github.com/videojs/standard/issues"
},
"dependencies": {
"commander": "^7.2.0",
"eslint": "^7.28.0",
"eslint-config-videojs": "^6.1.0",
"eslint-plugin-jsdoc": "^35.3.0",
"eslint-plugin-json-light": "^1.0.3",
"eslint-plugin-markdown": "^3.0.0",
"find-root": "^1.1.0",
"tsmlb": "^1.0.0"
},
"devDependencies": {
"@videojs/generator-helpers": "^3.2.0",
"videojs-generator-verify": "^4.0.1"
},
"homepage": "https://github.com/videojs/standard",
"keywords": [
"videojs",
"videojs-standard",
"check",
"checker",
"code",
"code checker",
"code linter",
"code standards",
"code style",
"enforce",
"eslint",
"hint",
"jscs",
"jshint",
"lint",
"policy",
"quality",
"simple",
"standard",
"standard style",
"style",
"style checker",
"style linter",
"verify"
],
"license": "Apache-2.0",
"main": "cli.js",
"repository": {
"type": "git",
"url": "git://github.com/videojs/standard.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"vjsstandard": {
"jsdoc": false
}
}