forked from raphamorim/react-tv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.38 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-tv",
"version": "0.2.1",
"description": "React development for TV (WebOS, Tizen, Orsay)",
"main": "dist/react-tv.umd.js",
"bin": {
"react-tv": "cli/index.js"
},
"files": [
"LICENSE",
"README.md",
"cli/",
"dist/"
],
"scripts": {
"build": "node scripts/rollup/build.js",
"build-all": "NODE_ENV=PROD node scripts/rollup/build.js",
"prepublish": "yarn build-all",
"test": "yarn flow && jest",
"flow": "flow",
"prettier": "node ./scripts/prettier/index.js write-changed",
"prettier-all": "node ./scripts/prettier/index.js write"
},
"dependencies": {
"chalk": "^2.1.0",
"express": "^4.15.4",
"fbjs": "^0.8.4",
"fs-extra": "^4.0.1",
"node-replace": "^0.3.1"
},
"devDependencies": {
"babel-jest": "20.1.0-delta.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"commitplease": "^3.1.0",
"flow-bin": "^0.57.3",
"jest": "20.1.0-delta.1",
"prettier": "^1.5.3",
"react": "16.0.0-alpha.3",
"react-dom": "16.0.0-alpha.3",
"react-fiber-types": "file:src/renderer/types",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-optimize-js": "^0.0.4",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/raphamorim/react-tv.git"
},
"commitplease": {
"style": "jquery",
"component": true,
"components": [
"all",
"modules",
"cli",
"scripts",
"renderer",
"docs",
"test"
]
},
"keywords": [
"react",
"tv",
"renderer",
"smarttv",
"tizen",
"orsay",
"lg",
"samsung",
"webos"
],
"engines": {
"node": ">=6"
},
"author": "Raphael Amorim <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/raphamorim/react-tv/issues"
},
"homepage": "https://github.com/raphamorim/react-tv#readme",
"jest": {
"roots": [
"<rootDir>/src"
],
"moduleDirectories": [
"node_modules",
"src"
],
"verbose": true,
"resetModules": true
}
}