-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.54 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
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
{
"name": "@hello.nrfcloud.com/bdd-markdown-steps",
"version": "0.0.0-development",
"description": "Step definitions for BDD Markdown",
"exports": {
"./*": {
"import": {
"types": "./npm/*.d.ts",
"default": "./npm/*.js"
}
}
},
"type": "module",
"scripts": {
"test": "node --experimental-transform-types --no-warnings --test \"!(npm|node_modules)/**/*.spec.ts\"",
"prepare": "husky",
"prepublishOnly": "node --experimental-transform-types --no-warnings ./.npm/compile.ts && npx tsgo src/*.ts --emitDeclarationOnly --declaration --ignoreConfig --allowImportingTsExtensions --target esnext --module nodenext --moduleResolution nodenext --outDir ./npm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hello-nrfcloud/bdd-markdown-steps.git"
},
"bugs": {
"url": "https://github.com/hello-nrfcloud/bdd-markdown-steps/issues"
},
"homepage": "https://github.com/hello-nrfcloud/bdd-markdown-steps",
"keywords": [
"bdd",
"steps",
"typescript"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"devDependencies": {
"@bifravst/eslint-config-typescript": "6.4.4",
"@bifravst/prettier-config": "1.1.17",
"@commitlint/config-conventional": "20.5.3",
"@swc/core": "1.15.41",
"@types/aws-lambda": "8.10.162",
"@types/node": "25.9.4",
"@typescript/native-preview": "7.0.0-dev.20260621.1",
"commitlint": "20.5.3",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"nock": "14.0.15"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint"
],
"*.{md,json,yaml,yml}": [
"prettier --write"
]
},
"engines": {
"node": ">=24",
"npm": ">=11"
},
"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": [
"npm",
"LICENSE",
"README.md"
],
"prettier": "@bifravst/prettier-config",
"peerDependencies": {
"@aws-sdk/client-dynamodb": "^3.972.0",
"@bifravst/bdd-markdown": "^8.2.80",
"@bifravst/http-api-mock": "^2.1.356",
"@hello.nrfcloud.com/nrfcloud-api-helpers": "^6.0.468",
"@sinclair/typebox": "^0.34.49",
"jsonata": "^2.1.0",
"p-retry": "^7.1.1"
}
}