This repository was archived by the owner on May 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.56 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.56 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
{
"name": "pc-nrfconnect-tracecollector",
"version": "1.1.6",
"displayName": "Trace Collector",
"description": "Deprecated: Capture nRF91 modem trace",
"homepage": "https://github.com/NordicSemiconductor/pc-nrfconnect-tracecollector",
"repository": {
"type": "git",
"url": "https://github.com/NordicSemiconductor/pc-nrfconnect-tracecollector.git"
},
"author": "Nordic Semiconductor ASA",
"license": "SEE LICENSE IN LICENSE",
"engines": {
"nrfconnect": ">=4.0.0"
},
"main": "dist/bundle.js",
"files": [
"dist/",
"resources/icon.*",
"Changelog.md",
"LICENSE"
],
"scripts": {
"watch": "run-p --silent --continue-on-error watch:*",
"watch:build": "run-esbuild --watch",
"watch:types": "tsc --noEmit --pretty --watch --preserveWatchOutput",
"build:dev": "run-esbuild",
"build:prod": "run-esbuild --prod",
"test": "jest",
"check": "run-p --silent --continue-on-error --print-label check:*",
"check:lint": "eslint --color .",
"check:types": "check-for-typescript tsc --noEmit --pretty",
"check:license": "nrfconnect-license check",
"nordic-publish": "node ./dist/nordic-publish.js",
"prepare": "husky install"
},
"devDependencies": {
"check-disk-space": "^1.5.0",
"pc-nrfconnect-shared": "github:NordicSemiconductor/pc-nrfconnect-shared#v7",
"pretty-bytes": "^5.1.0"
},
"prettier": "./node_modules/pc-nrfconnect-shared/config/prettier.config.js"
}