jell-utils 0.0.17 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jell-utils",
3
- "version": "0.0.17",
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\" \"src/**/*.js\"",
35
+ "format": "prettier --write \"src/**/*.ts\"",
22
36
  "test": "jest --config jestconfig.json",
23
- "prepare": "yarn build",
24
- "prepublishOnly": "yarn test && yarn lint && yarn lint:fix",
25
- "preversion": "yarn lint && yarn lint:fix",
26
- "version": "yarn format && git add -A src",
27
- "postversion": "git push && git push --tags"
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
- "@types/jest": "^26.0.22",
31
- "@typescript-eslint/eslint-plugin": "^4.22.0",
32
- "@typescript-eslint/parser": "^4.22.0",
33
- "eslint": "^7.24.0",
34
- "jest": "^26.6.3",
35
- "prettier": "^2.2.1",
36
- "ts-jest": "^26.5.5",
37
- "typescript": "^4.2.4"
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": {