-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.01 KB
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": "facebook-video-speed-control",
"version": "0.0.0-semantically-released",
"description": "Speed up or slow down playback of Facebook videos",
"main": "src/index.js",
"scripts": {
"start": "yarn dev --watch",
"dist": "cross-env NODE_ENV=\"production\" webpack",
"dev": "cross-env NODE_ENV=\"development\" webpack",
"release": "yarn semantic-release",
"lint": "eslint \"src/**\" --fix",
"test": "echo \"Error: no test specified\" && exit 0"
},
"keywords": [
"html5",
"video",
"playback",
"facebook"
],
"author": "Rem Lampa <rem@remlampa.com> (http://www.remlampa.com)",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"commitizen": "^4.2.1",
"commitlint": "^11.0.0",
"copy-webpack-plugin": "^6.2.1",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.4",
"husky": "^4.3.0",
"json-loader": "^0.5.7",
"lint-staged": "^10.4.2",
"prettier": "^2.1.2",
"semantic-release": "^17.2.1",
"semantic-release-chrome": "^1.1.3",
"webpack": "^5.1.3",
"webpack-cli": "^4.0.0",
"zip-webpack-plugin": "^3.0.0"
},
"dependencies": {
"lodash.throttle": "^4.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RemLampa/facebook-video-speed-control.git"
},
"bugs": {
"url": "https://github.com/RemLampa/facebook-video-speed-control/issues"
},
"homepage": "https://github.com/RemLampa/facebook-video-speed-control",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}