-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
92 lines (92 loc) · 2.33 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
{
"name": "react-tv-epg",
"version": "1.0.0",
"description": "A HTML5 Canvas based EPG(TV Guide) React Component for TV with unlimited Days of Program Guide Data",
"main": "index.js",
"author": "Satadru Bhattacharjee",
"email": "[email protected]",
"license": "Apache-2.0",
"scripts": {
"start": "node server.js",
"test": "jest",
"lint": "eslint src",
"build": "NODE_ENV=production webpack --config webpack/webpack.config.production.js --progress --hide-modules -p"
},
"keywords": [
"TV Guide",
"EPG",
"Canvas",
"Key Navigation",
"React",
"Program Guide",
"TV",
"component"
],
"devDependencies": {
"array.from": "^1.0.3",
"babel": "^6.5.2",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"babel-loader": "^6.2.10",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"css-loader": "^0.26.1",
"directory-named-webpack-plugin": "^2.0.1",
"enzyme": "^2.7.1",
"es6-map": "^0.1.5",
"eslint": "^3.15.0",
"eslint-config-standard-jsx": "^3.2.0",
"eslint-config-standard-react": "^4.2.0",
"eslint-plugin-react": "^6.9.0",
"express": "^4.14.1",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"file-loader": "^0.10.0",
"html-webpack-plugin": "^2.28.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^18.1.0",
"less": "^2.7.2",
"less-loader": "^2.2.3",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"rimraf": "^2.5.4",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.10.0",
"webpack-hot-middleware": "^2.16.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules",
"src"
],
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy",
"\\.(jpeg|jpg|png|gif|svg)$": "<rootDir>/__mocks__/noopMock.js"
}
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"standard-react"
],
"env": {
"node": true,
"browser": true
},
"rules": {
"jsx-quotes": [
"warn",
"prefer-double"
]
}
}
}