-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.9 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
{
"name": "tablo-api",
"version": "0.4.12",
"description": "an unofficial API to interact with Tablo DVRs",
"repository": {
"type": "git",
"url": "https://github.com/jessedp/tablo-api-js"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.js",
"scripts": {
"build": "yarn lint && tsc -p ./tsconfig.json --declaration",
"compodoc": "npx compodoc",
"compodoc-serve": "npx compodoc --watch --serve",
"create-docs": "mkdir -p $npm_package_docTmpDir && cd $npm_package_docTmpDir && (git clone [email protected]:jessedp/tablo-api-js.git $npm_package_docCloneDir 2> /dev/null || (cd $npm_package_docCloneDir; git pull) )",
"serve-docs": "yarn create-docs && cd $npm_package_docCloneDir && yarn install && yarn compdoc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.d.*ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"test": "echo \"Error: no test specified\" && exit 0",
"prepare": "yarn lint && yarn build",
"prepublishOnly": "yarn test && yarn lint",
"preversion": "npm run lint"
},
"docTmpDir": "/tmp/tablo-api-docs",
"docCloneDir": "/tmp/tablo-api-docs/tablo-api-js",
"files": [
"dist/**/*"
],
"keywords": [
"tablo",
"dvr",
"ota",
"javascript",
"api",
"electron"
],
"author": {
"name": "jesse",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"axios": "^0.27.2",
"byte-data": "^19.0.1",
"core-js": "^3.25.0",
"debug": "^4.3.4",
"structjs": "^0.2.2"
},
"devDependencies": {
"@compodoc/compodoc": "1.1.19",
"@types/debug": "^4.1.5",
"@types/node": "^12.12.10",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"lodash": "^4.17.21",
"minimist": "^1.2.6",
"prettier": "^1.19.1",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
}
}