forked from mattjburrows/react-redux-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.51 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
{
"name": "react-redux-player",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "mocha test/.setup.js test/**/*.js",
"bundle": "webpack --progress --colors",
"watch": "webpack --progress --colors --watch",
"lint": "eslint ."
},
"author": "Matthew Burrows <[email protected]>",
"license": "ISC",
"dependencies": {
"lodash": "^4.13.1",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-redux": "^4.4.5",
"redux": "^3.5.2"
},
"devDependencies": {
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"enzyme": "^2.0.0",
"eslint": "^2.8.0",
"eslint-config-iplayer-es6": "^2.0.0",
"eslint-plugin-mocha": "^2.2.0",
"eslint-plugin-react": "^5.0.1",
"jsdom": "^8.0.1",
"mocha": "^2.4.5",
"react-addons-test-utils": "^15.1.0",
"sinon": "^1.17.4",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"eslintConfig": {
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true
},
"extends": [
"plugin:react/recommended",
"iplayer-es6"
],
"rules": {
"strict": 0
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true,
"modules": true
}
},
"plugins": [
"react"
]
},
"private": true
}