-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
50 lines (50 loc) · 1.3 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
{
"name": "node-broadlink",
"description": "A promise based Node.js module for Broadlink controllers",
"version": "2.4.0",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "npx tsc",
"prepack": "npm test & npm run prepare",
"prepare": "npm run build",
"lint": "eslint .",
"test": "jest"
},
"files": [
"package.json",
"README.md",
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ThomasTavernier/broadlink-iot.git"
},
"keywords": [
"broadlink",
"iot"
],
"author": "Thomas TAVERNIER <[email protected]> (https://github.com/ThomasTavernier)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ThomasTavernier/broadlink-iot/issues"
},
"homepage": "https://github.com/ThomasTavernier/broadlink-iot#readme",
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^17.0.45",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.5.1",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"dependencies": {
"@aksel/structjs": "^1.0.0"
}
}