-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 837 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 837 Bytes
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
{
"name": "logitech-craft-plugin",
"version": "1.1.1",
"description": "A JavaScript (and TypeScript) API for creating a Logitech Craft plugin",
"main": "lib/index.js",
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"lint": "tslint src/*.ts",
"test": "npm run lint && echo 'No unit tests yet'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/idolize/logitech-craft-plugin.git"
},
"author": "David Idol",
"license": "MIT",
"bugs": {
"url": "https://github.com/idolize/logitech-craft-plugin/issues"
},
"homepage": "https://github.com/idolize/logitech-craft-plugin#readme",
"dependencies": {
"ws": "^7.3.0"
},
"devDependencies": {
"@types/node": "^12.12.31",
"@types/ws": "^7.2.3",
"tslint": "^6.1.0",
"typescript": "^3.8.3"
}
}