jell-utils 0.0.18 → 0.1.0
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/.claude/settings.local.json +16 -0
- package/.releaserc.json +115 -0
- package/CLAUDE.md +139 -0
- package/DEPLOYMENT.md +351 -0
- package/TEST_RESULTS.md +153 -0
- package/TEST_SIMULATION.md +27 -0
- package/coverage/clover.xml +300 -0
- package/coverage/coverage-final.json +2 -0
- package/coverage/lcov-report/base.css +224 -0
- package/coverage/lcov-report/block-navigation.js +87 -0
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/index.html +116 -0
- package/coverage/lcov-report/index.js.html +2059 -0
- package/coverage/lcov-report/prettify.css +1 -0
- package/coverage/lcov-report/prettify.js +2 -0
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +196 -0
- package/coverage/lcov.info +689 -0
- package/lib/index.d.ts +138 -39
- package/lib/index.js +492 -121
- package/package.json +45 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jell-utils",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "This is personal used function collection.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -9,8 +9,22 @@
|
|
|
9
9
|
"keywords": [
|
|
10
10
|
"Jell",
|
|
11
11
|
"utils",
|
|
12
|
-
"korean"
|
|
12
|
+
"korean",
|
|
13
|
+
"typescript",
|
|
14
|
+
"utilities",
|
|
15
|
+
"string-manipulation",
|
|
16
|
+
"date-formatting",
|
|
17
|
+
"korean-language",
|
|
18
|
+
"browser-utilities"
|
|
13
19
|
],
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/jellive/jell-utils.js.git"
|
|
23
|
+
},
|
|
24
|
+
"bugs": {
|
|
25
|
+
"url": "https://github.com/jellive/jell-utils.js/issues"
|
|
26
|
+
},
|
|
27
|
+
"homepage": "https://github.com/jellive/jell-utils.js#readme",
|
|
14
28
|
"directories": {
|
|
15
29
|
"lib": "./lib"
|
|
16
30
|
},
|
|
@@ -18,23 +32,38 @@
|
|
|
18
32
|
"build": "tsc",
|
|
19
33
|
"lint": "eslint src/**/*.ts",
|
|
20
34
|
"lint:fix": "eslint --fix src/**/*.ts",
|
|
21
|
-
"format": "prettier --write \"src/**/*.ts\"
|
|
35
|
+
"format": "prettier --write \"src/**/*.ts\"",
|
|
22
36
|
"test": "jest --config jestconfig.json",
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
37
|
+
"test:coverage": "jest --config jestconfig.json --coverage",
|
|
38
|
+
"prepare": "npm run build",
|
|
39
|
+
"prepublishOnly": "npm test && npm run lint",
|
|
40
|
+
"semantic-release": "semantic-release",
|
|
41
|
+
"semantic-release:dry-run": "semantic-release --dry-run",
|
|
42
|
+
"release:major": "npm version major",
|
|
43
|
+
"release:minor": "npm version minor",
|
|
44
|
+
"release:patch": "npm version patch",
|
|
45
|
+
"ci:install": "npm ci --ignore-scripts",
|
|
46
|
+
"ci:build": "npm run build",
|
|
47
|
+
"ci:test": "npm run test:coverage",
|
|
48
|
+
"ci:lint": "npm run lint"
|
|
28
49
|
},
|
|
29
50
|
"devDependencies": {
|
|
30
|
-
"@
|
|
31
|
-
"@
|
|
32
|
-
"@
|
|
33
|
-
"
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
"
|
|
37
|
-
"typescript": "^
|
|
51
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
52
|
+
"@semantic-release/commit-analyzer": "^11.0.0",
|
|
53
|
+
"@semantic-release/git": "^10.0.1",
|
|
54
|
+
"@semantic-release/github": "^9.2.1",
|
|
55
|
+
"@semantic-release/npm": "^11.0.0",
|
|
56
|
+
"@semantic-release/release-notes-generator": "^12.0.0",
|
|
57
|
+
"@types/jest": "^29.5.5",
|
|
58
|
+
"@typescript-eslint/eslint-plugin": "^6.7.4",
|
|
59
|
+
"@typescript-eslint/parser": "^6.7.4",
|
|
60
|
+
"conventional-changelog-conventionalcommits": "^7.0.2",
|
|
61
|
+
"eslint": "^8.50.0",
|
|
62
|
+
"jest": "^29.7.0",
|
|
63
|
+
"prettier": "^3.0.3",
|
|
64
|
+
"semantic-release": "^22.0.5",
|
|
65
|
+
"ts-jest": "^29.1.1",
|
|
66
|
+
"typescript": "^5.2.2"
|
|
38
67
|
},
|
|
39
68
|
"jest": {
|
|
40
69
|
"transform": {
|