-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.16 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
{
"name": "@nordicsemiconductor/nrfprogrammer-firmware-images",
"version": "0.0.0-development",
"description": "Provide firmware images for the nRF Programmer",
"type": "module",
"main": "index.js",
"scripts": {
"test": "npx tsx --test ./*.spec.ts",
"postinstall": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NordicSemiconductor/nrfprogrammer-firmware-images.git"
},
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/NordicSemiconductor/nrfprogrammer-firmware-images/issues"
},
"homepage": "https://github.com/NordicSemiconductor/nrfprogrammer-firmware-images#readme",
"devDependencies": {
"@bifravst/eslint-config-typescript": "6.1.19",
"@bifravst/prettier-config": "1.1.4",
"@types/node": "20.17.12",
"ajv": "8.17.1",
"ajv-formats": "3.0.1",
"ajv-keywords": "5.1.0",
"husky": "9.1.7",
"tsx": "4.19.2"
},
"lint-staged": {
"*.{md,json,yaml,yml}": [
"prettier --write"
],
"*.{ts,tsx}": [
"prettier --write",
"eslint"
]
},
"prettier": "@bifravst/prettier-config"
}