-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
102 lines (102 loc) · 2.6 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": "@willowtreeapps/rokul-runnings",
"version": "0.4.0",
"description": "Library to send automated commands to a Roku",
"main": "dist/index.js",
"bin": {
"rr": "./dist/src/commandLine/CommandLine.js"
},
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha -r ts-node/register test/*.ts",
"build": "tsc --build --clean && tsc",
"lint": "eslint src/**/*.ts test/**/*.ts",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/willowtreeapps/rokul-runnings.git"
},
"keywords": [
"roku",
"robot",
"framework",
"automation",
"willowtree"
],
"author": {
"name": "WillowTree, LLC",
"email": "[email protected]"
},
"contributors": [
{
"name": "Aaron Goff",
"email": "[email protected]"
},
{
"name": "Hunter McMillen",
"email": "[email protected]"
}
],
"license": "MIT",
"dependencies": {
"argparse": "^1.0.10",
"axios": "^0.21.1",
"chalk": "^4.0.0",
"configstore": "^5.0.1",
"form-data": "^3.0.0",
"indigestion": "^0.1.3",
"xml-js": "^1.6.11"
},
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"@types/argparse": "^1.0.38",
"@types/axios": "^0.14.0",
"@types/chai": "^4.2.10",
"@types/chalk": "^2.2.0",
"@types/configstore": "^4.0.0",
"@types/form-data": "^2.5.0",
"@types/mocha": "^7.0.2",
"@types/nock": "^11.1.0",
"@types/node": "^13.13.12",
"@types/xml-js": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^2.15.0",
"@typescript-eslint/parser": "^2.15.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.0.1",
"lint-staged": "^9.5.0",
"mocha": "^7.1.2",
"nock": "^11.7.0",
"prettier": "^1.19.1",
"ts-node": "^8.6.2",
"typescript": "^3.7.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run lint && npm test"
}
},
"lint-staged": {
"*.{js,ts,tsx,json,scss,md}": [
"prettier --write",
"git add"
]
},
"bugs": {
"url": "https://github.com/willowtreeapps/rokul-runnings/issues"
},
"homepage": "https://github.com/willowtreeapps/rokul-runnings"
}