-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
98 lines (98 loc) · 2.57 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
{
"name": "react-jplayer-utils",
"version": "3.1.5",
"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": "^7.1.1",
"babel-loader": "^7.1.2",
"babel-plugin-istanbul": "^4.0.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": "^2.11.16",
"cross-env": "^5.0.5",
"david": "^11.0.0",
"editorconfig": "^0.14.1",
"enzyme": "^2.2.0",
"eslint": "^4.3.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"expect": "^21.0.2",
"extract-text-webpack-plugin": "^3.0.0",
"jsdom": "^11.2.0",
"mocha": "^3.2.0",
"nyc": "^11.2.1",
"pre-commit": "^1.2.2",
"react": "^15.0.0",
"react-addons-test-utils": "^15.4.1",
"react-dom": "^15.0.0",
"redux": "^3.6.0",
"rimraf": "^2.6.1",
"webpack": "^3.5.6",
"webpack-dev-server": "^2.4.1"
},
"dependencies": {
"prop-types": "^15.5.8",
"react-redux": "^5.0.4",
"recompose": "^0.25.0"
}
}