Adding typescript package to dev deps
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Brandon Watson 2021-12-23 16:00:53 -05:00
parent 3564a34502
commit 22daeb8875
2 changed files with 11 additions and 2 deletions

8
package-lock.json generated
View File

@ -1,5 +1,5 @@
{ {
"name": "homebridge-hue-chase", "name": "@watsonb8/homebridge-hue-chase",
"version": "1.1.0", "version": "1.1.0",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
@ -389,6 +389,12 @@
"version": "1.0.1", "version": "1.0.1",
"resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.1.tgz", "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-1.0.1.tgz",
"integrity": "sha512-kcoMoKTPYnoeS50tzoqjPY3Uv9axeuuFAZY9M/9zFnhoVvRfxz9K29IMPD7jGmt2c8SW7i3gT9WqDl2+nV7p4A==" "integrity": "sha512-kcoMoKTPYnoeS50tzoqjPY3Uv9axeuuFAZY9M/9zFnhoVvRfxz9K29IMPD7jGmt2c8SW7i3gT9WqDl2+nV7p4A=="
},
"typescript": {
"version": "4.5.4",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.5.4.tgz",
"integrity": "sha512-VgYs2A2QIRuGphtzFV7aQJduJ2gyfTljngLzjpfW9FoYZF6xuw1W0vW9ghCKLfcWrCFxK81CSGRAvS1pn4fIUg==",
"dev": true
} }
} }
} }

View File

@ -7,7 +7,7 @@
"registry": "http://10.44.1.6:4873/" "registry": "http://10.44.1.6:4873/"
}, },
"scripts": { "scripts": {
"build": "tsc", "build": "tsc --build",
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
}, },
"repository": { "repository": {
@ -33,5 +33,8 @@
"@types/node-hue-api": "^2.3.0", "@types/node-hue-api": "^2.3.0",
"homebridge": "^0.4.50", "homebridge": "^0.4.50",
"node-hue-api": "^4.0.0" "node-hue-api": "^4.0.0"
},
"devDependencies": {
"typescript": "^4.5.4"
} }
} }