This repository was archived by the owner on May 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.23 KB
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": "zwifit",
"author": "Dawson Toth",
"version": "1.1.0",
"repository": {
"type": "git",
"url": "ssh://github.com:dawsontoth/zwifit.git"
},
"scripts": {
"start": "node app.js",
"enable-ble": "node src/ble/enable.js",
"test": "jest"
},
"license": "MIT",
"dependencies": {
"async": "^3.0.0",
"bleno": "npm:@abandonware/bleno@^0.5.1-1",
"bluetooth-hci-socket": "npm:@abandonware/bluetooth-hci-socket@^0.5.3-4",
"death": "^1.1.0",
"express": "^4.17.0",
"js-yaml": "^3.13.1",
"local-devices": "^2.0.0",
"noble": "npm:@abandonware/noble@^1.9.2-8",
"readline-utils": "^2.2.3",
"socket.io": "^2.2.0",
"websocket": "^1.0.28"
},
"devDependencies": {
"jest": "^25.1.0",
"rewire": "^4.0.1"
},
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/src/"
],
"modulePaths": [
"<rootDir>/src"
],
"moduleDirectories": [
"node_modules"
]
},
"optionalDependencies": {
"xpc-connection": "sandeepmistry/node-xpc-connection#pull/26/head"
},
"resolutions": {
"xpc-connection": "sandeepmistry/node-xpc-connection#pull/26/head"
}
}