-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.25 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.25 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "quicktube",
"version": "3.1.2",
"description": "A lightweight embed video player, with support for YouTube and Vimeo",
"main": "dist/quicktube.js",
"module": "es/quicktube.js",
"author": "Springload",
"license": "MIT",
"homepage": "https://springload.github.io/quicktube/",
"bugs": {
"url": "https://github.com/springload/quicktube/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/springload/quicktube.git"
},
"keywords": [
"YouTube",
"Vimeo",
"player",
"embed",
"video"
],
"babel": {
"presets": [
[
"env",
{
"targets": {
"browsers": [
"> 1%",
"IE 11"
]
},
"modules": false
}
]
],
"env": {
"test": {
"presets": [
[
"env",
{
"targets": {
"browsers": [
"> 1%",
"IE 11"
]
}
}
]
]
}
}
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.4.0",
"babel-preset-env": "^1.7.0",
"eslint": "^3.17.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"jest": "^19.0.2",
"object-assign": "^4.1.1",
"promise": "^7.3.1",
"webpack": "^2.7.0",
"webpack-dev-server": "^2.11.2"
},
"dependencies": {
"lodash": "^4.17.21"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:watch:coverage": "jest --watch --coverage",
"lint": "eslint",
"copy:css": "cp src/quicktube.css examples/quicktube.css && cp src/quicktube.css dist/quicktube.css",
"js": "babel src -d es && BABEL_ENV=test babel src -d dist",
"build": "npm run js -s && webpack --config=webpack/webpack.config.prod.js && npm run copy:css -s",
"dist": "npm run build -s",
"start": "npm run copy:css && webpack-dev-server --config=webpack/webpack.config.dev.js"
}
}