-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathpackage.json
76 lines (76 loc) · 2.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
67
68
69
70
71
72
73
74
75
76
{
"name": "@silvermine/videojs-chromecast",
"version": "1.5.0",
"description": "video.js plugin for casting to chromecast",
"main": "src/js/index.js",
"scripts": {
"check-node-version": "check-node-version --node $(cat .nvmrc) --npm 10.5.0 --print",
"commitlint": "commitlint --from 5ed6165",
"test": "nyc mocha -- 'tests/**/*.test.js'",
"build": "grunt build",
"build:debug": "grunt build --debug",
"stylelint": "stylelint './src/scss/**/*.scss'",
"eslint": "eslint '{,!(node_modules|dist)/**/}*.js'",
"markdownlint": "markdownlint-cli2",
"standards": "npm run commitlint && npm run markdownlint && npm run stylelint && npm run eslint",
"release:preview": "node ./node_modules/@silvermine/standardization/scripts/release.js preview",
"release:prep-changelog": "node ./node_modules/@silvermine/standardization/scripts/release.js prep-changelog",
"release:finalize": "node ./node_modules/@silvermine/standardization/scripts/release.js finalize",
"prepublish": "npm run build"
},
"author": "Jeremy Thomerson",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/silvermine/videojs-chromecast.git"
},
"keywords": [
"video.js",
"videojs",
"plugin",
"google",
"chromecast",
"cast"
],
"bugs": {
"url": "https://github.com/silvermine/videojs-chromecast/issues"
},
"homepage": "https://github.com/silvermine/videojs-chromecast#readme",
"dependencies": {
"webcomponents.js": "git+https://[email protected]/webcomponents/webcomponentsjs.git#v0.7.24"
},
"devDependencies": {
"@babel/core": "7.20.7",
"@babel/preset-env": "7.20.2",
"@commitlint/cli": "8.3.5",
"@commitlint/travis-cli": "8.3.5",
"@silvermine/eslint-config": "3.0.1",
"@silvermine/standardization": "2.2.0",
"autoprefixer": "8.6.5",
"babel-eslint": "10.1.0",
"babelify": "10.0.0",
"check-node-version": "4.0.3",
"core-js": "3.11.0",
"coveralls": "3.0.2",
"eslint": "6.8.0",
"expect.js": "0.3.1",
"grunt": "1.4.0",
"grunt-browserify": "5.3.0",
"grunt-contrib-clean": "2.0.0",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-uglify": "5.2.2",
"grunt-contrib-watch": "1.1.0",
"grunt-postcss": "0.9.0",
"grunt-sass": "3.1.0",
"mocha": "8.4.0",
"mocha-lcov-reporter": "1.3.0",
"nyc": "15.1.0",
"rewire": "2.5.2",
"sass": "1.52.3",
"silvermine-serverless-utils": "git+https://github.com/silvermine/serverless-utils.git#910f1149af824fc8d0fa840878079c7d3df0f414",
"sinon": "2.3.5"
},
"peerDependencies": {
"video.js": ">= 6 < 9"
}
}