-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.2 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
{
"name": "blync-party",
"version": "0.1.5",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"prestart": "npm run build",
"start": "node ./dist/cli/main.js",
"precommit": "lint-staged",
"prettier": "prettier --write \"**/*.ts\"",
"prepublishOnly": "npm run build"
},
"lint-staged": {
"*.js|*.ts": [
"prettier --write",
"git add"
]
},
"keywords": [
"blync",
"blynclight",
"embrava",
"party",
"led",
"light",
"productivity"
],
"author": "",
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.5",
"chance": "^1.0.18",
"color-name": "^1.1.4",
"got": "^9.6.0",
"node-hid": "^0.7.9",
"ramda": "^0.26.1"
},
"devDependencies": {
"@types/bluebird": "^3.5.27",
"@types/chance": "^1.0.5",
"@types/color-name": "^1.1.1",
"@types/got": "^9.6.7",
"@types/node": "^12.6.8",
"@types/node-hid": "^0.7.2",
"@types/ramda": "^0.26.16",
"husky": "^3.0.1",
"lint-staged": "^9.2.0",
"prettier": "^1.18.2",
"typescript": "^3.5.3"
},
"bin": {
"blync-party": "./dist/cli/main.js"
}
}