forked from bitfocus/companion-module-generic-emberplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.55 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
{
"name": "generic-emberplus",
"version": "1.1.4",
"api_version": "1.0.0",
"keywords": [
"ember",
"emberplus"
],
"manufacturer": "Generic",
"product": "Ember+",
"shortname": "emberplus",
"description": "Ember+ module for Companion",
"main": "dist/index.js",
"scripts": {
"dev": "yarn build:watch",
"build": "npx rimraf dist && npx typescript@~4.2 -p tsconfig.build.json",
"build:main": "tsc -p tsconfig.build.json",
"build:watch": "tsc -p tsconfig.build.json --watch",
"lint": "eslint . --ext .ts",
"postinstall": "yarn build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitfocus/companion-module-generic-emberplus.git"
},
"author": "Balte de Wit <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bitfocus/companion-module-generic-emberplus/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
],
"*.{ts}": [
"yarn lint --fix --",
"git add"
]
},
"dependencies": {
"@types/node": "^12.0.4",
"type-fest": "^1.1.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "~2.31.0",
"@typescript-eslint/parser": "~2.31.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^3.0.5",
"lint-staged": "^9.2.5",
"prettier": "^1.17.1",
"rimraf": "^3.0.2",
"typescript": "~4.2"
},
"resolutions": {
"**/inquirer": "~7.2.0"
},
"homepage": "https://github.com/bitfocus/companion-module-generic-emberplus#readme"
}