-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.79 KB
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
{
"name": "@nrfcloud/wait-for-it",
"version": "1.0.7",
"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",
"exports": {
".": {
"import": {
"types": "./npm/waitForIt.d.ts",
"default": "./npm/waitForIt.js"
}
}
},
"files": [
"npm",
"README.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "node --test --experimental-transform-types ./*.test.ts ./.npm/*.spec.ts",
"prepare": "case \"$npm_command\" in install|ci) check-node-version --package ;; esac",
"prepublishOnly": "node --experimental-strip-types ./.npm/compile.ts && npx tsc -P ./.npm/tsconfig.npm.json --outDir ./npm"
},
"dependencies": {
"backoff": "2.5.0"
},
"devDependencies": {
"@bifravst/prettier-config": "2.0.0",
"@swc/core": "1.16.2",
"@types/backoff": "2.5.5",
"check-node-version": "4.2.1",
"@types/node": "25.9.6",
"@typescript/native": "npm:typescript@7.0.2",
"prettier": "3.9.6"
},
"prettier": "@bifravst/prettier-config",
"release": {
"branches": [
"main"
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"successCommentCondition": false,
"failCommentCondition": false
}
]
]
},
"engines": {
"npm": ">=12.0.2 <13"
}
}