This repository has been archived by the owner on Jul 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
95 lines (95 loc) · 2.28 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@nordicsemiconductor/asset-tracker-cloud-docs",
"version": "0.0.0-development",
"description": "The nRF Asset Tracker aims to provide a concrete end-to-end example for an IoT product in the asset tracker space.",
"type": "module",
"types": "./protocol.d.ts",
"exports": {
"./protocol": {
"import": "./protocol.js",
"node": "./protocol.js"
}
},
"scripts": {
"test": "npx tsx --test docs/cloud-protocol/*.spec.ts",
"prepare": "husky",
"prepublishOnly": "npx swc --strip-leading-paths -d dist ./docs/cloud-protocol"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NordicSemiconductor/asset-tracker-cloud-docs.git"
},
"bugs": {
"url": "https://github.com/NordicSemiconductor/asset-tracker-cloud-docs/issues"
},
"homepage": "https://github.com/NordicSemiconductor/asset-tracker-cloud-docs#readme",
"keywords": [
"nrf-asset-tracker",
"iot"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"devDependencies": {
"@bifravst/eslint-config-typescript": "6.1.8",
"@bifravst/prettier-config": "1.0.3",
"@commitlint/config-conventional": "19.2.2",
"@swc/cli": "0.4.0",
"@types/glob": "8.1.0",
"@types/node": "20.14.10",
"chalk": "5.3.0",
"glob": "11.0.0",
"husky": "9.0.11",
"tsx": "4.16.2"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint"
],
"*.{md,json,yaml,yml}": [
"prettier --write"
],
"*.rst": [
"node scripts/headline-fixer.js"
]
},
"engines": {
"node": ">=20",
"npm": ">=10"
},
"release": {
"branches": [
"saga"
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"successComment": false,
"failTitle": false
}
]
]
},
"publishConfig": {
"access": "public"
},
"prettier": "@bifravst/prettier-config",
"files": [
"protocol.js",
"protocol.d.ts",
"dist",
"src",
"LICENSE",
"README.md",
"docs/cloud-protocol/*.ts"
],
"peerDependencies": {
"@sinclair/typebox": "^0.32.34",
"ajv": "^8.16.0"
}
}