-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 1.89 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
{
"name": "e118-iin-list",
"version": "0.0.0-development",
"description": "List of issuer identifier numbers for the international telecommunication charge card (ITU-T E.118)",
"type": "module",
"typings": "dist/index.d.ts",
"bin": "cli.js",
"exports": {
"import": "./dist/index.js"
},
"scripts": {
"test": "npx tsx --test src/*.spec.ts",
"convert": "npx tsx src/convert.ts",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bifravst/e118-iin-list.git"
},
"keywords": [
"nrf-asset-tracker",
"e118",
"itu-t",
"iin",
"iccid",
"issuer"
],
"author": "Nordic Semiconductor ASA | nordicsemi.no",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/bifravst/e118-iin-list/issues"
},
"homepage": "https://github.com/bifravst/e118-iin-list#readme",
"devDependencies": {
"@bifravst/eslint-config-typescript": "6.1.19",
"@bifravst/prettier-config": "1.1.1",
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@types/node": "22.9.3",
"csv-parser": "3.0.0",
"husky": "9.1.7",
"tsx": "4.19.2"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint"
],
"*.{md,json,yaml,yml}": [
"prettier --write"
]
},
"engines": {
"node": ">=22",
"npm": ">=10"
},
"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": [
"dist",
"docs",
"LICENSE",
"README.md",
"cli.js"
],
"prettier": "@bifravst/prettier-config"
}