-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 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
{
"name": "@nrfcloud/fetch-with-debug",
"version": "0.0.0-development",
"description": "Simple wrapper around fetch that logs request and response.",
"homepage": "https://github.com/nRFCloud/fetch-with-debug#readme",
"bugs": {
"url": "https://github.com/nRFCloud/fetch-with-debug/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nRFCloud/fetch-with-debug.git"
},
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"scripts": {
"test": "node --no-warnings --experimental-transform-types --test \"./*.spec.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"
},
"license": "BSD-3-Clause",
"type": "module",
"exports": {
".": {
"import": {
"types": "./npm/export.d.ts",
"default": "./npm/export.js"
}
}
},
"files": [
"npm",
"README.md"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@bifravst/prettier-config": "1.1.17",
"@swc/core": "1.15.47",
"@types/node": "25.9.5",
"@typescript/native": "npm:typescript@7.0.2",
"check-node-version": "4.2.1",
"nock": "14.0.17",
"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"
}
}