|
1 | 1 | {
|
2 |
| - "name": "ngx-validator", |
3 |
| - "version": "1.0.0", |
4 |
| - "description": "Angular7+ form validator, make error tips easy and automatic. don't need to manually write error tips templates.", |
5 |
| - "scripts": { |
6 |
| - "ng": "ng", |
7 |
| - "start": "ng serve", |
8 |
| - "build": "ng build core", |
9 |
| - "build:docs": "ng build integration --baseHref /ngx-validator/ --prod", |
10 |
| - "pub-only": "cd ./dist/core && npm publish --access=public", |
11 |
| - "pub": "npm run build && npm run pub-only && git push --follow-tags origin master", |
12 |
| - "pull-latest": "git checkout master && git pull origin master", |
13 |
| - "release": "standard-version", |
14 |
| - "release-major": "npm run pull-latest && standard-version --release-as major", |
15 |
| - "release-minor": "npm run pull-latest && standard-version --release-as minor", |
16 |
| - "release-patch": "npm run pull-latest && standard-version --release-as patch", |
17 |
| - "test": "ng test core", |
18 |
| - "test:demo": "ng test integration", |
19 |
| - "lint": "ng lint core", |
20 |
| - "lint:demo": "ng lint integration", |
21 |
| - "e2e": "ng e2e", |
22 |
| - "contributors:add": "all-contributors add", |
23 |
| - "contributors:generate": "all-contributors generate" |
24 |
| - }, |
25 |
| - "private": false, |
26 |
| - "repository": "https://github.com/why520crazy/ngx-validator", |
27 |
| - "author": "why520crazy <mail@why520crazy@163.com>", |
28 |
| - "license": "MIT", |
29 |
| - "dependencies": { |
30 |
| - "@angular/animations": "~7.0.0", |
31 |
| - "@angular/common": "~7.0.0", |
32 |
| - "@angular/compiler": "~7.0.0", |
33 |
| - "@angular/core": "~7.0.0", |
34 |
| - "@angular/forms": "~7.0.0", |
35 |
| - "@angular/http": "~7.0.0", |
36 |
| - "@angular/platform-browser": "~7.0.0", |
37 |
| - "@angular/platform-browser-dynamic": "~7.0.0", |
38 |
| - "@angular/router": "~7.0.0", |
39 |
| - "bootstrap": "^4.2.1", |
40 |
| - "core-js": "^2.5.4", |
41 |
| - "lib": "^3.0.2", |
42 |
| - "rxjs": "~6.3.3", |
43 |
| - "zone.js": "~0.8.26" |
44 |
| - }, |
45 |
| - "devDependencies": { |
46 |
| - "@angular-devkit/build-angular": "~0.10.0", |
47 |
| - "@angular-devkit/build-ng-packagr": "^0.10.5", |
48 |
| - "@angular/cli": "~7.0.3", |
49 |
| - "@angular/compiler-cli": "~7.0.0", |
50 |
| - "@angular/language-service": "~7.0.0", |
51 |
| - "@commitlint/cli": "^7.5.2", |
52 |
| - "@commitlint/config-conventional": "^7.5.0", |
53 |
| - "@types/jasmine": "~2.8.8", |
54 |
| - "@types/jasminewd2": "~2.0.3", |
55 |
| - "@types/node": "^8.10.48", |
56 |
| - "all-contributors-cli": "^6.6.0", |
57 |
| - "codelyzer": "~4.5.0", |
58 |
| - "highlight.js": "^9.13.1", |
59 |
| - "husky": "^2.3.0", |
60 |
| - "jasmine-core": "~2.99.1", |
61 |
| - "jasmine-spec-reporter": "~4.2.1", |
62 |
| - "karma": "~3.0.0", |
63 |
| - "karma-chrome-launcher": "~2.2.0", |
64 |
| - "karma-coverage-istanbul-reporter": "~2.0.1", |
65 |
| - "karma-jasmine": "~1.1.2", |
66 |
| - "karma-jasmine-html-reporter": "^0.2.2", |
67 |
| - "ng-packagr": "^4.2.0", |
68 |
| - "ngx-highlightjs": "^3.0.0", |
69 |
| - "prettier": "^1.17.1", |
70 |
| - "pretty-quick": "^1.10.0", |
71 |
| - "protractor": "~5.4.0", |
72 |
| - "standard-version": "^6.0.1", |
73 |
| - "ts-node": "~7.0.0", |
74 |
| - "tsickle": ">=0.29.0", |
75 |
| - "tslib": "^1.9.0", |
76 |
| - "tslint": "~5.11.0", |
77 |
| - "typescript": "~3.1.1" |
78 |
| - }, |
79 |
| - "husky": { |
80 |
| - "hooks": { |
81 |
| - "commit-msg": "commitlint -E HUSKY_GIT_PARAMS", |
82 |
| - "pre-commit": "pretty-quick --staged" |
83 |
| - } |
| 2 | + "name": "ngx-validator", |
| 3 | + "version": "1.0.0", |
| 4 | + "description": "Angular7+ form validator, make error tips easy and automatic. don't need to manually write error tips templates.", |
| 5 | + "scripts": { |
| 6 | + "ng": "ng", |
| 7 | + "start": "ng serve", |
| 8 | + "build": "ng build core", |
| 9 | + "build:docs": "ng build integration --baseHref /ngx-validator/ --prod", |
| 10 | + "pub-only": "cd ./dist/core && npm publish --access=public", |
| 11 | + "pub": "npm run build && npm run pub-only && git push --follow-tags origin master", |
| 12 | + "pull-latest": "git checkout master && git pull origin master", |
| 13 | + "release": "standard-version", |
| 14 | + "release-major": "npm run pull-latest && standard-version --release-as major", |
| 15 | + "release-minor": "npm run pull-latest && standard-version --release-as minor", |
| 16 | + "release-patch": "npm run pull-latest && standard-version --release-as patch", |
| 17 | + "test": "ng test core", |
| 18 | + "test:demo": "ng test integration", |
| 19 | + "lint": "ng lint core", |
| 20 | + "lint:demo": "ng lint integration", |
| 21 | + "e2e": "ng e2e", |
| 22 | + "contributors:add": "all-contributors add", |
| 23 | + "contributors:generate": "all-contributors generate" |
| 24 | + }, |
| 25 | + "private": false, |
| 26 | + "repository": "https://github.com/why520crazy/ngx-validator", |
| 27 | + "author": "why520crazy <mail@why520crazy@163.com>", |
| 28 | + "license": "MIT", |
| 29 | + "dependencies": { |
| 30 | + "@angular/animations": "~8.1.0", |
| 31 | + "@angular/common": "~8.1.0", |
| 32 | + "@angular/compiler": "~8.1.0", |
| 33 | + "@angular/core": "~8.1.0", |
| 34 | + "@angular/forms": "~8.1.0", |
| 35 | + "@angular/platform-browser": "~8.1.0", |
| 36 | + "@angular/platform-browser-dynamic": "~8.1.0", |
| 37 | + "@angular/router": "~8.1.0", |
| 38 | + "bootstrap": "^4.2.1", |
| 39 | + "core-js": "^2.5.4", |
| 40 | + "lib": "^3.0.2", |
| 41 | + "rxjs": "~6.5.2", |
| 42 | + "zone.js": "~0.9.1" |
| 43 | + }, |
| 44 | + "devDependencies": { |
| 45 | + "@angular-devkit/build-angular": "~0.801.0", |
| 46 | + "@angular-devkit/build-ng-packagr": "~0.801.0", |
| 47 | + "@angular/cli": "~8.1.0", |
| 48 | + "@angular/compiler-cli": "~8.1.0", |
| 49 | + "@angular/language-service": "~8.1.0", |
| 50 | + "@commitlint/cli": "^7.5.2", |
| 51 | + "@commitlint/config-conventional": "^7.5.0", |
| 52 | + "@types/jasmine": "~2.8.8", |
| 53 | + "@types/jasminewd2": "~2.0.3", |
| 54 | + "@types/node": "^8.10.48", |
| 55 | + "all-contributors-cli": "^6.6.0", |
| 56 | + "codelyzer": "^5.0.1", |
| 57 | + "highlight.js": "^9.13.1", |
| 58 | + "husky": "^2.3.0", |
| 59 | + "jasmine-core": "~2.99.1", |
| 60 | + "jasmine-spec-reporter": "~4.2.1", |
| 61 | + "karma": "~3.0.0", |
| 62 | + "karma-chrome-launcher": "~2.2.0", |
| 63 | + "karma-coverage-istanbul-reporter": "~2.0.1", |
| 64 | + "karma-jasmine": "~1.1.2", |
| 65 | + "karma-jasmine-html-reporter": "^0.2.2", |
| 66 | + "ng-packagr": "^5.1.0", |
| 67 | + "ngx-highlightjs": "^3.0.0", |
| 68 | + "prettier": "^1.17.1", |
| 69 | + "pretty-quick": "^1.10.0", |
| 70 | + "protractor": "~5.4.0", |
| 71 | + "standard-version": "^6.0.1", |
| 72 | + "ts-node": "~7.0.0", |
| 73 | + "tsickle": "^0.35.0", |
| 74 | + "tslib": "^1.9.0", |
| 75 | + "tslint": "~5.11.0", |
| 76 | + "typescript": "~3.4.5" |
| 77 | + }, |
| 78 | + "husky": { |
| 79 | + "hooks": { |
| 80 | + "commit-msg": "commitlint -E HUSKY_GIT_PARAMS", |
| 81 | + "pre-commit": "pretty-quick --staged" |
84 | 82 | }
|
| 83 | + } |
85 | 84 | }
|
0 commit comments