|
1 | 1 | { |
2 | 2 | "name": "regexify-string", |
3 | 3 | "version": "1.0.5", |
4 | | - "description": "The way to decorate string by using regex with: React components, HTML tags etc.", |
5 | | - "main": "index.js", |
6 | | - "scripts": { |
7 | | - "test": "jest", |
8 | | - "build": "tsc --declaration", |
9 | | - "--- VERSIONING ---": "", |
10 | | - "version-patch:up": "npm version patch --no-git-tag-version --force && git add package.json package-lock.json", |
11 | | - "version-minor:up": "npm version minor --no-git-tag-version --force && git add package.json package-lock.json", |
12 | | - "version-major:up": "npm version major --no-git-tag-version --force && git add package.json package-lock.json" |
13 | | - }, |
14 | | - "husky": { |
15 | | - "hooks": { |
16 | | - "pre-commit": "npm run version-patch:up", |
17 | | - "pre-push": "npm run test" |
18 | | - } |
19 | | - }, |
20 | | - "publishConfig": { |
21 | | - "registry-github": "https://npm.pkg.github.com/@artem-solovev", |
22 | | - "registry-npm": "https://registry.npmjs.org/" |
23 | | - }, |
| 4 | + "description": "Strings decorator (by regex) with: React components, HTML tags etc.", |
| 5 | + "license": "MIT", |
| 6 | + "homepage": "https://github.com/artem-solovev/regexify-string#readme", |
24 | 7 | "repository": { |
25 | 8 | "type": "git", |
26 | 9 | "url": "git+https://github.com/artem-solovev/regexify-string.git" |
27 | 10 | }, |
| 11 | + "bugs": { |
| 12 | + "url": "https://github.com/artem-solovev/regexify-string/issues" |
| 13 | + }, |
28 | 14 | "keywords": [ |
29 | 15 | "regex", |
30 | 16 | "react", |
|
33 | 19 | "decoration", |
34 | 20 | "parsing" |
35 | 21 | ], |
36 | | - "author": "Artem Solovev", |
37 | | - "license": "MIT", |
38 | | - "bugs": { |
39 | | - "url": "https://github.com/artem-solovev/regexify-string/issues" |
| 22 | + "publishConfig": { |
| 23 | + "registry-github": "https://npm.pkg.github.com/@artem-solovev", |
| 24 | + "registry-npm": "https://registry.npmjs.org/" |
| 25 | + }, |
| 26 | + "main": "index.js", |
| 27 | + "types": "index.d.ts", |
| 28 | + "authors": [ |
| 29 | + "Artem Vadimovich Solovev <artem.solovev.lse@gmail.com> (https://github.com/artem-solovev)" |
| 30 | + ], |
| 31 | + "husky": { |
| 32 | + "hooks": { |
| 33 | + "pre-commit": "npm run version-patch:up", |
| 34 | + "pre-push": "npm run test" |
| 35 | + } |
| 36 | + }, |
| 37 | + "scripts": { |
| 38 | + "test": "jest", |
| 39 | + "build": "tsc --declaration", |
| 40 | + "--- VERSIONING ---": "", |
| 41 | + "version-patch:up": "npm version patch --no-git-tag-version --force && git add package.json package-lock.json", |
| 42 | + "version-minor:up": "npm version minor --no-git-tag-version --force && git add package.json package-lock.json", |
| 43 | + "version-major:up": "npm version major --no-git-tag-version --force && git add package.json package-lock.json" |
40 | 44 | }, |
41 | | - "homepage": "https://github.com/artem-solovev/regexify-string#readme", |
42 | 45 | "devDependencies": { |
43 | 46 | "@types/jest": "^26.0.4", |
44 | 47 | "@types/node": "^14.0.20", |
|
0 commit comments