-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
54 lines (54 loc) · 1.38 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
{
"name": "node-matter",
"version": "0.0.11",
"description": "Matter protocol for node.js",
"keywords": [
"iot",
"home automation",
"matter",
"smart device"
],
"engines": {
"_comment": "For Crypto.hkdf support",
"node": ">=16"
},
"license": "Apache-2.0",
"author": "Marco Fucci di Napoli <mfucci@gmail.com> (https://www.linkedin.com/in/marco-fucci-di-napoli/)",
"bugs": {
"url": "https://github.com/mfucci/node-matter/issues"
},
"homepage": "https://github.com/mfucci/node-matter",
"repository": {
"type": "git",
"url": "https://github.com/mfucci/node-matter.git"
},
"scripts": {
"clean": "rm -rf build",
"build": "npm run clean; tsc",
"test": "TZ=utc mocha",
"lint": "eslint src/**/*.ts",
"lint-fix": "eslint --fix **/*.ts"
},
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/bytebuffer": "^5.0.43",
"@types/elliptic": "^6.4.14",
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-plugin-import": "^2.27.5",
"eslint-import-resolver-typescript": "^3.5.3",
"mocha": "^10.0.0",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"dependencies": {
"@project-chip/matter.js": "^0.2.1",
"bn.js": "^5.2.0",
"elliptic": "^6.5.4"
},
"files": [
"build/**/*"
]
}