-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 979 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 979 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
32
33
34
35
36
37
38
39
40
{
"name": "ws2801",
"version": "1.0.0",
"description": "This package combines the following packages: ws2801-pi, ws2801-webser and ws2801-alexa.",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf dist && tsc",
"lint": "tslint --project .",
"start": "node dist/run.js",
"start:dev": "npm run build && npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SteffenKn/ws2801.git"
},
"keywords": [
"ws2801",
"pi",
"led",
"alexa",
"webserver"
],
"author": "Steffen Knaup",
"license": "MIT",
"bugs": {
"url": "https://github.com/SteffenKn/ws2801/issues"
},
"homepage": "https://github.com/SteffenKn/ws2801#readme",
"dependencies": {
"ws2801-alexa": "^1.0.0",
"ws2801-pi": "^1.2.0",
"ws2801-webserver": "^1.0.0"
},
"devDependencies": {
"@types/node": "14.14.16",
"tslint": "6.1.3",
"tslint-eslint-rules": "5.4.0",
"typescript": "^4.1.3"
}
}