forked from fabiopaiva/react-plyr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
102 lines (102 loc) · 3.09 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
{
"name": "react-plyr",
"version": "2.2.0",
"description": "A simple, accessible HTML5 media player React Component",
"homepage": "https://github.com/xDae/react-plyr",
"bugs": {
"url": "https://github.com/xDae/react-plyr/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/xDae/react-plyr.git"
},
"license": "MIT",
"author": "Jose Miguel Bejarano",
"contributors": [
"Jose Miguel Bejarano <[email protected]>",
"Fábio Paiva <[email protected]>",
"Felipe Lacerda <[email protected]>",
"Frederik Riedel <[email protected]>",
"Fufu <[email protected]>",
"Brandon Fields <[email protected]>",
"Kyle Szives <[email protected]>",
"Maros Hluska <[email protected]>",
"Ben Iofel <[email protected]>",
"samahndev <[email protected]>",
"Coriou <[email protected]>"
],
"main": "lib/index.js",
"scripts": {
"build": "npm run clean && babel src --out-dir lib --ignore test.js,setupTests.js",
"clean": "rimraf lib",
"prettier": "prettier --single-quote --trailing-comma es5 --write '{src,__{tests,mocks}__}/*.js'",
"prepublish": "npm test && npm run build",
"storybook": "start-storybook -s ./public -p 6006",
"storybook-build": "rimraf docs && build-storybook -c .storybook -o docs && copyfiles -u 1 public/* docs",
"test": "jest",
"test:all": "jest && npm run test:lint",
"test:coverage": "jest --coverage",
"test:lint": "eslint src",
"test:watch": "jest --watch"
},
"jest": {
"moduleFileExtensions": [
"jsx",
"js",
"json"
],
"moduleNameMapper": {
"\\.(css|less|scss)$": "identity-obj-proxy"
},
"setupFiles": [
"<rootDir>/src/setupTests.js"
],
"testPathIgnorePatterns": [
"<rootDir>/(lib|docs|node_modules)/"
]
},
"dependencies": {
"@theankur/plyr": "^3.7.2",
"lodash.difference": "^4.5.0",
"lodash.pick": "^4.4.0",
"prop-types": "^15.7.2"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/preset-react": "^7.0.0",
"@storybook/addon-actions": "^5.0.1",
"@storybook/addon-info": "^5.0.1",
"@storybook/addon-links": "^5.0.1",
"@storybook/addon-options": "^5.0.1",
"@storybook/addons": "^5.0.1",
"@storybook/react": "^5.0.1",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.3.1",
"copyfiles": "^2.1.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.10.0",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.15.1",
"eslint-config-react-app": "^3.0.8",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.3.1",
"jest-cli": "^24.3.1",
"jest-enzyme": "^7.0.2",
"prettier": "1.16.4",
"raf": "^3.4.1",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-scripts": "^2.1.8",
"rimraf": "^2.6.3"
},
"peerDependencies": {
"react": "16.x"
},
"types": "./index.d.ts"
}