-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 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
{
"name": "@particle/device-os-test-runner",
"version": "0.14.1",
"description": "Device OS Test Runner",
"license": "Apache-2.0",
"main": "lib/index.js",
"bin": {
"device-os-test": "lib/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/particle-iot/device-os-test-runner.git"
},
"engines": {
"node": ">=12"
},
"scripts": {
"start": "node lib/index.js",
"lint": "eslint . --ignore-pattern=examples --ignore-pattern=test/fixtures",
"lint:fix": "npm run lint -- --fix",
"test": "npm run lint -- --quiet && npm run coverage",
"test:unit": "mocha --forbid-only \"lib/**/*.test.js\"",
"coverage": "nyc --check-coverage npm run test:unit"
},
"dependencies": {
"@particle/device-constants": "^3.6.0",
"chai": "^4.3.6",
"chalk": "^4.1.2",
"convict": "^5.1.0",
"glob": "^7.2.0",
"minimist": "^1.2.6",
"mkdirp": "^0.5.1",
"mocha": "^6.2.3",
"particle-api-js": "^9.2.0",
"particle-usb": "^2.8.0",
"shellsubstitute": "^1.2.0",
"simple-git": "^1.126.0",
"tmp": "^0.1.0"
},
"devDependencies": {
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"eslint": "^8.17.0",
"eslint-config-particle": "^2.5.0",
"lodash": "^4.17.21",
"nise": "^5.1.4",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^14.0.0",
"sinon-chai": "^3.7.0"
}
}