-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.42 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
55
56
{
"name": "@particle/device-os-flash-util",
"version": "0.14.0",
"description": "Device OS Flashing Utility",
"license": "Apache-2.0",
"main": "lib/index.js",
"bin": {
"device-os-flash": "lib/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/particle-iot/device-os-flash-util.git"
},
"engines": {
"node": ">=12"
},
"scripts": {
"start": "node lib/index.js",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "npm run lint -- --quiet && npm run coverage",
"test:unit": "mocha --forbid-only \"lib/**/*.test.js\" --timeout 30000",
"test:integration": "mocha --forbid-only \"integration-tests/**/*.test.js\" --timeout 30000",
"coverage": "nyc --check-coverage npm run test:unit"
},
"dependencies": {
"@octokit/rest": "^18.9.1",
"@particle/device-constants": "^3.6.0",
"binary-version-reader": "^2.2.0",
"chalk": "^3.0.0",
"decompress": "^4.2.1",
"download": "^8.0.0",
"fast-glob": "^3.2.2",
"lodash": "^4.17.15",
"minimist": "^1.2.5",
"mkdirp": "^1.0.4",
"p-limit": "^2.3.0",
"particle-api-js": "^8.3.0",
"particle-usb": "^2.2.2",
"rimraf": "^3.0.2",
"semver": "^7.1.3",
"telnet-client": "^1.2.11",
"tmp": "^0.1.0",
"usb": "^2.5.0",
"which": "^2.0.2"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-exclude": "^2.1.1",
"chai-fs": "^2.0.0",
"eslint": "^8.3.0",
"eslint-config-particle": "^2.5.0",
"mocha": "^9.0.3",
"nyc": "^15.1.0"
}
}