bb26 5.0.0 → 5.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +18 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bb26",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.1",
|
|
4
4
|
"description": "Utilities for working with bijective base-26 numerals",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"base 26",
|
|
@@ -11,38 +11,44 @@
|
|
|
11
11
|
"spreadsheet column letters",
|
|
12
12
|
"license plate serials"
|
|
13
13
|
],
|
|
14
|
-
"repository":
|
|
15
|
-
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "https://github.com/patrik-csak/BB26"
|
|
17
|
+
},
|
|
16
18
|
"license": "MIT",
|
|
17
19
|
"author": "Patrik Csak <p@trikcsak.com> (https://patrikcsak.com)",
|
|
18
20
|
"type": "module",
|
|
19
21
|
"exports": {
|
|
20
|
-
"
|
|
21
|
-
|
|
22
|
+
".": {
|
|
23
|
+
"types": "./distribution/source/index.d.ts",
|
|
24
|
+
"default": "./distribution/source/index.js"
|
|
25
|
+
}
|
|
22
26
|
},
|
|
23
27
|
"files": [
|
|
24
28
|
"distribution/source"
|
|
25
29
|
],
|
|
26
30
|
"scripts": {
|
|
27
31
|
"build": "del-cli distribution && tsc",
|
|
28
|
-
"format": "eslint --fix && prettier --write
|
|
32
|
+
"format": "eslint --fix && npm run prettier -- --write",
|
|
29
33
|
"prepare": "npm run build",
|
|
30
|
-
"
|
|
31
|
-
"test
|
|
34
|
+
"prettier": "prettier .",
|
|
35
|
+
"test": "eslint && npm run prettier -- --check && ava",
|
|
36
|
+
"test:coverage": "del-cli coverage && eslint && npm run prettier -- --check && c8 ava"
|
|
32
37
|
},
|
|
33
38
|
"dependencies": {
|
|
34
|
-
"ow": "^
|
|
39
|
+
"ow": "^3.1.1",
|
|
35
40
|
"random-int": "^3.0.0"
|
|
36
41
|
},
|
|
37
42
|
"devDependencies": {
|
|
38
43
|
"@ava/typescript": "^6.0.0",
|
|
39
|
-
"@sindresorhus/tsconfig": "^
|
|
44
|
+
"@sindresorhus/tsconfig": "^8.1.0",
|
|
40
45
|
"ava": "^6.4.1",
|
|
41
46
|
"c8": "^10.1.3",
|
|
42
|
-
"del-cli": "^
|
|
47
|
+
"del-cli": "^7.0.0",
|
|
43
48
|
"eslint": "^9.32.0",
|
|
49
|
+
"eslint-plugin-package-json": "^0.83.0",
|
|
44
50
|
"prettier": "^3.6.2",
|
|
45
|
-
"
|
|
51
|
+
"prettier-plugin-packagejson": "^2.5.19",
|
|
46
52
|
"typescript": "^5.0.2",
|
|
47
53
|
"xo": "^1.2.1"
|
|
48
54
|
},
|