-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "@nrfcloud/wait-for-it",
"version": "0.0.0-development",
"description": "Retries the given function using a backoff algorithm.",
"homepage": "https://github.com/nrfcloud/wait-for-it#readme",
"bugs": {
"url": "https://github.com/nrfcloud/wait-for-it/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nrfcloud/wait-for-it.git"
},
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"type": "module",
"main": "waitForIt.ts",
"scripts": {
"test": "node --test --experimental-transform-types ./*.test.ts"
},
"dependencies": {
"backoff": "2.5.0"
},
"devDependencies": {
"@bifravst/prettier-config": "1.1.4",
"@types/backoff": "2.5.5",
"prettier": "3.4.2"
},
"prettier": "@bifravst/prettier-config",
"release": {
"branches": [
"main"
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@sebbo2002/semantic-release-jsr"
]
}
}