-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
59 lines (59 loc) · 1.74 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
{
"name": "youtube-chapters",
"title": "A YouTube chapter generator",
"description": "A chapters markers generator plugin for a YouTube video, built using JavaScript.",
"url": "https://github.com/VD39/youtube-chapters",
"author": "Vijay Dubb",
"copyright": "2013",
"version": "3.1.0",
"license": "MIT",
"main": "dist/js/youtube-chapters.js",
"repository": {
"type": "git",
"url": "https://github.com/VD39/youtube-chapters.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "webpack-dev-server --port 9100",
"prod:unmin": "webpack",
"prod:min": "webpack --config=webpack.min.config.js",
"build": "npm run prod:unmin | npm run prod:min"
},
"dependencies": {},
"devDependencies": {
"autoprefixer": "^6.7.7",
"babel": "6.5.2",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.0",
"babel-plugin-add-module-exports": "0.1.2",
"babel-preset-es2015": "^6.24.0",
"css-loader": "^0.27.3",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-formatter-pretty": "^1.1.0",
"eslint-plugin-compat": "^0.1.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^6.8.0",
"eslint-loader": "1.6.1",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.10.1",
"node-sass": "^4.5.2",
"postcss-loader": "^1.3.3",
"raw-loader": "^0.5.1",
"sass-loader": "^6.0.3",
"style-loader": "^0.14.1",
"url-loader": "^0.5.8",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2"
},
"keywords": [
"YouTube",
"Chapters",
"Markers",
"YouTube Chapters",
"Youtube Markers"
]
}