forked from jhurliman/node-motionblinds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.27 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
{
"version": "2.4.1",
"license": "MIT",
"description": "A library for interfacing with Motion Blinds from Coulisse B.V",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "dts watch",
"build": "dts build",
"test": "dts test",
"test:hil": "dts test --testMatch '<rootDir>/hiltest/*.ts'",
"lint": "dts lint src test hiltest",
"prepare": "dts build"
},
"husky": {
"hooks": {
"pre-commit": "dts lint src test hiltest"
}
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "@vben19/motionblinds",
"author": "Benjamin V (VBen)",
"homepage": "https://github.com/VBen/node-motionblinds",
"module": "dist/motionblinds.esm.js",
"devDependencies": {
"@types/jest": "^27.5.0",
"@types/node": "^17.0.31",
"dts-cli": "^2.0.5",
"husky": "^9.1.4",
"tslib": "^2.4.0",
"typescript": "^4.6.4"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/VBen/node-motionblinds.git"
},
"directories": {
"doc": "docs",
"test": "test"
},
"bugs": {
"url": "https://github.com/VBen/node-motionblinds/issues"
}
}