-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.49 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.49 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
55
{
"name": "binary-version-reader",
"version": "4.2.0",
"main": "main.js",
"exports": {
".": "./main.js",
"./limited": "./limited.js"
},
"license": "Apache-2.0",
"engines": {
"node": ">=12",
"npm": ">=8.x"
},
"dependencies": {
"@particle/device-os-protobuf": "^2.7.0",
"archiver": "^5.3.1",
"buffer-crc32": "^0.2.5",
"tmp-promise": "^3.0.3",
"unzipper": "^0.10.11",
"xtend": "^4.0.2"
},
"peerDependencies": {
"@particle/device-constants": "^4.0.1"
},
"devDependencies": {
"@particle/device-constants": "^4.0.1",
"buffer-offset": "^0.1.2",
"chai": "^4.0.0",
"chai-as-promised": "^7.1.1",
"chai-exclude": "^2.1.0",
"coveralls": "^3.0.7",
"mocha": "^10.2.0",
"nyc": "^14.1.1",
"should": "^6.0.3"
},
"scripts": {
"test": "npm run test:unit",
"test:ci": "npm run test:unit -- --forbid-only && npm run coverage",
"test:unit": "nyc --reporter=text mocha -R spec specs/lib/**.js",
"test:unit:watch": "npm run test:unit -- --watch",
"test:unit:inspect": "npm run test:unit -- --inspect-brk",
"test:unit:silent": "npm run test:unit > tmp/test-unit-log.txt 2>&1",
"coverage": "nyc --reporter=text --include='specs/lib/**.js' --temp-dir=./tmp/ --check-coverage --lines 95 npm run test:unit:silent",
"reinstall": "rm -rf ./node_modules && npm i"
},
"bin": {
"pmod": "bin/pmod.js"
},
"contributors": [
{
"name": "Eric Ely",
"url": "https://github.com/eely22"
}
]
}