-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
120 lines (120 loc) · 3.89 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "react-videoplayer",
"version": "0.6.4",
"description": "A configrable react html5 video component",
"main": "lib/index.js",
"scripts": {
"clean:lib": "del lib umd",
"clean:docs": "del public",
"clean": "npm run clean:lib",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "npm run lint && jest",
"coverage": "npm test -- --coverage",
"build:sass": "node-sass ./src/videoplayer.scss ./lib/index.css",
"build:sass:umd": "node-sass ./src/videoplayer.scss ./umd/videoplayer.css",
"build:sass:umd:min": "node-sass ./src/videoplayer.scss ./umd/videoplayer.min.css --output-style compressed",
"build:copymedia": "cpy src/media/* lib/media",
"build:lib": "cross-env NODE_ENV=production babel ./src --stage 0 -d ./lib --ignore __tests__",
"build:umd": "cross-env NODE_ENV=production webpack ./src/index.js ./umd/videoplayer.js",
"build:min": "cross-env NODE_ENV=production webpack -p ./src/index.js ./umd/videoplayer.min.js",
"build:docs": "cross-env NODE_ENV=production webpack -p --config=docs/webpack.config.js",
"build": "npm run build:sass && npm run build:lib && npm run build:umd && npm run build:min && npm run build:sass:umd && npm run build:sass:umd:min && npm run build:copymedia",
"prebuild": "npm run clean:lib && npm test",
"deploy": "npm run docs && gh-pages -d public",
"postpublish": "git push origin master --follow-tags",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"patch": "npm version patch && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jainmukul/react-videoplayer.git"
},
"files": [
"lib",
"umd"
],
"keywords": [
"react",
"react-component",
"react-videoplayer",
"react videoplayer",
"reactVideoPlayer",
"html5-videoplayer",
"html5-video",
"html5",
"video"
],
"author": "Mukul Jain <[email protected]> (https://mukuljain.me)",
"engines": {
"node": ">=4"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jainmukul/react-videoplayer/issues"
},
"homepage": "https://github.com/jainmukul/react-videoplayer#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-jest": "^15.0.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.14.0",
"cpy-cli": "^1.0.1",
"cross-env": "^2.0.1",
"css-loader": "^0.25.0",
"del-cli": "^0.2.1",
"enzyme": "^2.4.1",
"eslint": "^3.5.0",
"eslint-config-standard": "^6.0.0",
"eslint-config-standard-jsx": "^3.0.0",
"eslint-config-standard-react": "^4.0.0",
"eslint-loader": "^1.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-promise": "^3.0.0",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-standard": "^2.0.0",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.11.1",
"gh-pages": "^0.11.0",
"highlight.js": "^9.9.0",
"html-webpack-plugin": "^2.22.0",
"jest": "^15.1.1",
"marked": "^0.3.6",
"node-sass": "^4.5.3",
"opn-cli": "^3.1.0",
"raw-loader": "^0.5.1",
"react": "^15.3.1",
"react-addons-test-utils": "^15.3.1",
"react-dom": "^15.3.1",
"react-ga": "^2.2.0",
"react-github-button": "^0.1.11",
"react-test-renderer": "^15.5.4",
"sass-loader": "^6.0.6",
"style-loader": "^0.13.1",
"url-loader": "^0.5.8",
"webpack": "^1.13.0",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.10.0"
},
"dependencies": {
"prop-types": "^15.5.9"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0"
},
"jest": {
"moduleNameMapper": {
".*\\.(scss|svg)$": "<rootDir>/src/"
}
},
"directories": {
"lib": "lib"
}
}