forked from crownstone/bluenet-nodejs-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 940 Bytes
/
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
{
"name": "bluenet-nodejs-lib",
"version": "0.3.0",
"scripts": {
"start": "tsc -watch",
"test": "jest --useStderr --clearMocks",
"cleanTest": "jest --useStderr --no-cache --clearMocks"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"dependencies": {
"@abandonware/noble": "^1.9.2-10",
"aes-js": "^3.1.1",
"jest": "^25.1.0",
"node-fetch": "^2.6.0",
"serialport": "^8.0.7",
"sha-1": "~0.1.1"
},
"devDependencies": {
"@types/jest": "^25.1.1",
"@types/node": "^13.5.3",
"typescript": "3.7.5"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "./tests/jest_preprocessor.js"
},
"testMatch": [
"**/tests/*.test.+(ts|tsx|js)"
],
"setupFiles": [
"./tests/jest_setup.js"
],
"collectCoverage": true,
"collectCoverageFrom": []
},
"license": "MIT"
}