This repository has been archived by the owner on Feb 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
45 lines (45 loc) · 1.68 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
{
"name": "pc-nrfconnect-gettingstarted",
"version": "2.1.1",
"displayName": "Getting Started Assistant",
"description": "Deprecated. Please use Toolchain Manager.",
"homepage": "https://github.com/NordicSemiconductor/pc-nrfconnect-gettingstarted",
"repository": {
"type": "git",
"url": "https://github.com/NordicSemiconductor/pc-nrfconnect-gettingstarted"
},
"author": "Nordic Semiconductor ASA",
"license": "SEE LICENSE IN LICENSE",
"engines": {
"nrfconnect": ">=4.0.0"
},
"main": "dist/bundle.js",
"files": [
"dist/",
"resources/icon.*",
"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 --passWithNoTests",
"check": "run-p --silent --continue-on-error --print-label check:*",
"check:app": "check-app-properties",
"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": {
"pc-nrfconnect-shared": "git+https://github.com/NordicSemiconductor/pc-nrfconnect-shared.git#v6.17.0"
},
"dependencies": {},
"eslintConfig": {
"extends": "./node_modules/pc-nrfconnect-shared/config/eslintrc"
},
"prettier": "./node_modules/pc-nrfconnect-shared/config/prettier.config.js"
}