-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.36 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
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
97
98
99
100
101
{
"name": "@bifravst/bdd-markdown",
"version": "0.0.0-development",
"description": "Write BDD tests in Markdown.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/bifravst/bdd-markdown.git"
},
"bugs": {
"url": "https://github.com/bifravst/bdd-markdown/issues"
},
"homepage": "https://github.com/bifravst/bdd-markdown#readme",
"keywords": [
"nrf-asset-tracker",
"bdd"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"typings": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"node": "./dist/index.js"
},
"./*": {
"import": "./dist/*",
"node": "./dist/*"
}
},
"devDependencies": {
"@bifravst/eslint-config-typescript": "6.1.18",
"@bifravst/prettier-config": "1.1.1",
"@commitlint/config-conventional": "19.5.0",
"@types/node": "22.9.0",
"@types/toposort": "2.0.7",
"check-node-version": "4.2.1",
"commitlint": "19.5.0",
"eslint-import-resolver-typescript": "3.6.3",
"exponential-backoff": "^3.1.1",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"tsx": "4.19.2"
},
"prettier": "@bifravst/prettier-config",
"engines": {
"node": ">=20.0.0",
"npm": ">=9.0.0"
},
"scripts": {
"test": "find ./ -type f -name *.spec.ts | xargs npx tsx --test --test-reporter spec",
"prepare": "husky && check-node-version --package",
"prepublishOnly": "npx tsc --noEmit false --outDir ./dist -d"
},
"lint-staged": {
"*.{md,json,yaml,yml}": [
"prettier --write"
],
"*.{ts,tsx}": [
"prettier --write",
"eslint"
]
},
"release": {
"branches": [
"saga"
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"successComment": false,
"failTitle": false
}
]
]
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/index.d.ts",
"dist/index.js",
"dist/parser",
"dist/reporter",
"dist/runner",
"LICENSE",
"README.md"
],
"peerDependencies": {
"@sinclair/typebox": "^0.34.0",
"chalk": "^5.3.0",
"jsonata": "^2.0.5",
"toposort": "^2.0.2",
"yaml": "^2.6.0"
}
}