-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
79 lines (79 loc) · 2.18 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
{
"name": "tvos-soap4.me",
"version": "1.18.2",
"description": "tvOS app for soap4.me video service https://soap4.me/",
"main": "src",
"engine-strict": true,
"engines": {
"node": ">=8.9.0",
"yarn": ">=1.3.0"
},
"scripts": {
"install-deps": "npm run yarn:install && npm run yarn:install-deps",
"yarn:install": "npm i --no-save --no-package-lock yarn@$npm_package_engines_yarn",
"yarn:install-deps": "yarn install --frozen-lockfile --check-files",
"build": "webpack --progress",
"serve": "webpack-dev-server",
"dist": "NODE_ENV=production webpack --progress",
"lint": "eslint webpack.config.js src",
"prettier": "prettier --write webpack.config.js 'src/**/*.js'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/a-ignatov-parc/tvos-soap4.me.git"
},
"keywords": [
"soap4.me",
"apple",
"tvdml",
"tvml",
"tvos",
"tvjs",
"tv"
],
"author": "Anton Ignatov <abietis@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/a-ignatov-parc/tvos-soap4.me/issues"
},
"homepage": "https://github.com/a-ignatov-parc/tvos-soap4.me#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write",
"git add"
]
},
"dependencies": {
"blueimp-md5": "^2.3.0",
"moment": "^2.14.1",
"simple-format-number": "^0.1.2",
"tvdml": "^5.1.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.4.0",
"file-loader": "^1.1.5",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.17.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.1"
}
}