-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 2.37 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
96
97
98
99
100
101
102
103
{
"name": "@hello.nrfcloud.com/proto-map",
"version": "0.0.0-development",
"description": "Documents the communication protocol between devices, the hello.nrfcloud.com/map backend and web application",
"type": "module",
"exports": {
"./*": {
"default": "./dist/*/index.js",
"types": "./*/index.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/hello-nrfcloud/proto-map.git"
},
"bugs": {
"url": "https://github.com/hello-nrfcloud/proto-map/issues"
},
"homepage": "https://hello.nrfcloud.com",
"keywords": [
"nordicsemiconductor",
"cellular-iot",
"hello-nrfcloud",
"hello-nrfcloud-map"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"engines": {
"node": ">=20.0.0",
"npm": ">=9.0.0"
},
"scripts": {
"prepare": "husky",
"test": "npx globstar -- npx tsx --test --test-reporter spec \"!(node_modules)/**/*.spec.ts\"",
"prepublishOnly": "./compile.sh"
},
"devDependencies": {
"@bifravst/eslint-config-typescript": "6.1.20",
"@bifravst/prettier-config": "1.1.4",
"@commitlint/config-conventional": "19.7.1",
"@swc/cli": "0.6.0",
"@swc/core": "1.10.14",
"@types/node": "22.13.0",
"@types/xml2js": "0.4.14",
"chalk": "5.4.1",
"globstar": "1.0.0",
"husky": "9.1.7",
"lint-staged": "15.4.3",
"remark": "15.0.1",
"remark-frontmatter": "5.0.0",
"tsmatchers": "5.0.2",
"tsx": "4.19.2",
"typescript": "5.7.3",
"xml2js": "0.6.2",
"yaml": "2.7.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"eslint"
],
"*.{md,json,yaml,yml,html}": [
"prettier --write"
],
"*.xml": [
"./lwm2m/format.sh"
]
},
"prettier": "@bifravst/prettier-config",
"release": {
"branches": [
"saga"
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"successCommentCondition": false,
"failTitle": false
}
]
]
},
"publishConfig": {
"access": "public"
},
"files": [
"LICENSE",
"README.md",
"dist",
"api",
"senml",
"models",
"lwm2m"
],
"peerDependencies": {
"@sinclair/typebox": "^0.34.15"
}
}