-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.53 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.53 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
95
96
97
{
"name": "react-jplayer-utils",
"version": "3.1.6",
"description": "Utils for react-jPlayer and add-ons",
"author": "Martin Dawson <u1356770@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/jPlayer/react-jPlayer-utils.git"
},
"bugs": {
"url": "https://github.com/jPlayer/react-jPlayer-utils/issues"
},
"homepage": "https://github.com/jPlayer/react-jPlayer-utils",
"license": "MIT",
"main": "./lib/index.js",
"files": [
"dist",
"lib",
"src"
],
"scripts": {
"lint": "eslint --fix --ext .jsx,.js ./src",
"coverage": "cross-env BABEL_ENV=test nyc mocha src/**/*.spec.{js,jsx} --opts ./mocha.opts",
"test": "cross-env BABEL_ENV=test mocha src/**/*.spec.{js,jsx} --opts ./mocha.opts",
"test:watch": "npm test -- -w",
"packages": "david",
"packages:update": "david update",
"dist": "rimraf dist && webpack",
"build": "rimraf lib && babel src --out-dir lib --ignore spec.js,spec.jsx",
"preversion": "npm test && npm run lint",
"version": "npm run build",
"postversion": "git push && git push --tags"
},
"pre-commit": [
"lint",
"test"
],
"nyc": {
"extension": [
".jsx"
],
"include": "src",
"exclude": [
"**/*.spec.{js,jsx}"
],
"require": [
"babel-register"
],
"reporter": [
"lcov",
"text-summary"
],
"all": true,
"cache": true,
"sourceMap": false,
"instrument": false
},
"devDependencies": {
"babel-cli": "^6.6.4",
"babel-core": "6",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"babel-plugin-istanbul": "^5.1.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.24.0",
"babili-webpack-plugin": "^0.1.2",
"coveralls": "^3.0.2",
"cross-env": "^5.0.5",
"david": "^11.0.0",
"editorconfig": "^0.15.2",
"enzyme": "^3.8.0",
"eslint": "^5.10.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.1.0",
"expect": "^23.6.0",
"extract-text-webpack-plugin": "^3.0.0",
"jsdom": "^13.1.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"pre-commit": "^1.2.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"redux": "^4.0.1",
"rimraf": "^2.6.1",
"webpack": "^4.27.1",
"webpack-dev-server": "^3.1.10"
},
"dependencies": {
"prop-types": "^15.5.8",
"react-redux": "^6.0.0",
"recompose": "^0.30.0"
}
}