forked from NordicSemiconductor/asset-tracker-cloud-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.75 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
{
"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.",
"scripts": {
"test": "jest",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"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": {
"@nordicsemiconductor/asset-tracker-cloud-code-style": "11.0.97",
"@swc/jest": "0.2.21",
"@types/ajv": "1.0.0",
"@types/glob": "7.2.0",
"@types/jest": "28.1.4",
"@types/node": "16.11.42",
"ajv": "8.11.0",
"glob": "8.0.3",
"jest": "28.1.2"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --ext .js,.ts"
],
"*.{md,json,yaml,yml}": [
"prettier --write"
],
"*.rst": [
"node scripts/headline-fixer.mjs"
]
},
"engines": {
"node": ">=16",
"npm": ">=8"
},
"release": {
"branches": [
"saga"
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/github"
]
},
"jest": {
"transform": {
"^.+\\.(t|j)sx?$": [
"@swc/jest"
]
},
"testRegex": ".+\\.spec\\.ts$"
}
}