-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
67 lines (67 loc) · 1.92 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
{
"name": "generator-videojs-plugin",
"version": "9.0.0",
"description": "A Yeoman generator for Video.js plugins",
"license": "Apache-2.0",
"main": "generators/app/index.js",
"engines": {
"node": ">=14",
"npm": ">=6"
},
"repository": "videojs/generator-videojs-plugin",
"author": {
"name": "Pat O'Neill",
"email": "pgoneill@gmail.com",
"url": "https://github.com/misteroneill"
},
"vjsstandard": {
"ignore": [
"docs",
"generators/app/templates"
]
},
"scripts": {
"lint": "vjsstandard",
"pretest": "npm run lint",
"test": "npm-run-all test:*",
"test:unit": "mocha test/*.test.js --timeout 10000",
"test:integration": "node scripts/run-integration-tests.js",
"test:integration-lib": "node scripts/run-integration-tests.js --library",
"test:verify": "vjsverify --skip-es-check --verbose",
"preversion": "npm-run-all generate-pkg-lock test",
"generate-pkg-lock": "node scripts/generate-pkg-lock.js && git add plugin/package-lock.json",
"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|docs/conventions.md)": "doctoc --notitle"
},
"keywords": [
"yeoman-generator",
"videojs",
"videojs-plugin"
],
"dependencies": {
"lodash": "^4.17.21",
"please-upgrade-node": "^3.2.0",
"sync-request": "^6.1.0",
"yeoman-environment": "^3.19.3",
"yeoman-generator": "^5.9.0"
},
"devDependencies": {
"@videojs/generator-helpers": "^3.2.0",
"is-ci": "^3.0.1",
"mocha": "^10.2.0",
"videojs-generator-verify": "^4.0.1",
"videojs-standard": "^9.0.1",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^6.3.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}