-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
84 lines (84 loc) · 2.3 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
{
"name": "tvdml",
"version": "6.3.0",
"description": "Small library for creating declarative apps for tvOS with React.js using TVML and TVJS",
"main": "dist/tvdml.js",
"engine-strict": true,
"engines": {
"node": ">=8.9.0",
"yarn": "^1.3.0"
},
"scripts": {
"install-deps": "npx yarn@$npm_package_engines_yarn install --frozen-lockfile --check-files",
"build": "webpack --progress",
"watch": "webpack --watch --progress",
"dist": "NODE_ENV=production webpack --progress",
"lint": "eslint webpack.config.js src test",
"prettier": "prettier --write webpack.config.js src/**/*.js test/**/*.js",
"test": "NODE_ENV=test mocha --reporter spec --timeout 4000 --require @babel/register",
"update-readme-toc": "npx doctoc README.md",
"add-old-tag": "npm dist-tag add $npm_package_name@$npm_package_version old",
"remove-next-tag": "npm dist-tag rm $npm_package_name next"
},
"repository": {
"type": "git",
"url": "git+https://github.com/a-ignatov-parc/tvdml.git"
},
"keywords": [
"react",
"apple",
"tvos",
"tvjs",
"tvml",
"tv"
],
"author": "Anton Ignatov <abietis@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/a-ignatov-parc/tvdml/issues"
},
"homepage": "https://github.com/a-ignatov-parc/tvdml#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write",
"git add"
]
},
"dependencies": {
"react-reconciler": "^0.20.3",
"scheduler": "^0.13.5"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/plugin-transform-modules-commonjs": "^7.4.0",
"@babel/register": "^7.4.0",
"babel-loader": "^8.0.5",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"mocha": "^4.0.1",
"mocha-junit-reporter": "^1.15.0",
"prettier": "^1.16.4",
"react": "^16.8.5",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"peerDependencies": {
"react": "^16.8.5"
},
"files": [
"dist"
]
}