-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.06 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
{
"name": "@kabbi/ble-mesh",
"version": "1.0.7",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest"
},
"keywords": [],
"author": "",
"license": "MIT",
"optionalDependencies": {
"@abandonware/noble": "^1.9.2-9",
"@serialport/parser-readline": "^9.0.0",
"serialport": "^9.0.0"
},
"dependencies": {
"@kabbi/aes-ccm": "^1.0.3",
"aes-js": "^3.1.0",
"buffer-xor": "^2.0.2",
"debug": "^3.1.0",
"jbinary": "^2.1.3",
"lodash": "^4.17.21",
"node-aes-cmac": "^0.1.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^2.5.1",
"jest": "^25.1.0",
"prettier": "^1.19.1"
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./src/utils/test-utils.js"
]
}
}