forked from JsDaddy/ngx-mask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 4.17 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "ngx-mask",
"version": "11.1.5",
"description": "awesome ngx mask",
"license": "MIT",
"angular-cli": {},
"keywords": [
"ng2-mask",
"ngx-mask",
"ng2",
"angular-mask",
"mask",
"angular",
"angular2",
"angular2-mask",
"ng2mask",
"jsdaddy"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run precommit-msg && npm run lint && npm run test"
}
},
"private": true,
"scripts": {
"build": "ng build showcase --prod",
"build:lib": "ng build --prod ngx-mask-lib && npm run copy-libdocs",
"ci": "npm run lint && npm run build:lib && npm run test:all && npm run build",
"copy-libdocs": "copyfiles -V -E README.md LICENSE dist/ngx-mask-lib",
"fix:prettier": "prettier --write \"./**/*.{js,json,md,ts,html,scss}\"",
"fix:lint": "npm run lint -- --fix",
"lint": "concurrently --kill-others-on-fail \"ng lint showcase\" \"ng lint ngx-mask-lib\" \"npm run lint:markdown\" \"npm run lint:prettier\"",
"lint:markdown": "markdownlint -i projects/ngx-mask-lib/coverage -i node_modules -i CHANGELOG.md ./",
"lint:prettier": "prettier --check \"./**/*.{js,json,md,ts,html,scss}\"",
"ng": "ng",
"pack:lib": "cd dist/ngx-mask-lib && npm pack",
"precommit-msg": "echo 'Please wait while we do our pre-commit checks...' && exit 0",
"prettier": "prettier './src/**/*.ts' './projects/**/*.ts' --write",
"publish:lib": "cd dist/ngx-mask-lib && npm publish",
"release:major": "npm run version:major && npm run build:lib && npm run pack:lib && npm run publish:lib",
"release:minor": "npm run version:minor && npm run build:lib && npm run pack:lib && npm run publish:lib",
"release:patch": "npm run version:patch && npm run build:lib && npm run pack:lib && npm run publish:lib",
"start": "ng serve -o showcase --hmr",
"start-prod": "angular-http-server --path dist/showcase --p 3000 --silent",
"test": "npm run test:lib",
"test:all": "npm run test:app && npm run test:lib",
"test:app": "ng test showcase",
"test:lib": "ng test ngx-mask-lib",
"version:major": "npm --no-git-tag-version version major && cd projects/ngx-mask-lib && npm --no-git-tag-version version major",
"version:minor": "npm --no-git-tag-version version minor && cd projects/ngx-mask-lib && npm --no-git-tag-version version minor",
"version:patch": "npm --no-git-tag-version version patch && cd projects/ngx-mask-lib && npm --no-git-tag-version version patch"
},
"repository": {
"type": "git",
"url": "https://github.com/JsDaddy/ngx-mask.git"
},
"dependencies": {
"@angular/animations": "11.2.11",
"@angular/cdk": "11.2.10",
"@angular/common": "11.2.11",
"@angular/compiler": "11.2.11",
"@angular/core": "11.2.11",
"@angular/forms": "11.2.11",
"@angular/platform-browser": "11.2.11",
"@angular/platform-browser-dynamic": "11.2.11",
"@angular/router": "11.2.11",
"bootstrap": "4.6.0",
"intl": "1.2.5",
"npm-check-updates": "11.5.1",
"rxjs": "6.6.7",
"tslib": "^2.2.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1102.10",
"@angular/cli": "11.2.10",
"@angular/compiler-cli": "11.2.11",
"@angular/language-service": "^11.2.11",
"@angular/material": "11.2.10",
"@commitlint/cli": "~12.1.1",
"@commitlint/config-conventional": "~12.1.1",
"@types/highlight.js": "9.12.4",
"@types/jasmine": "3.6.9",
"@types/node": "^14.14.41",
"angular-cli-ghpages": "0.6.2",
"angular-http-server": "~1.10.0",
"codelyzer": "^6.0.1",
"concurrently": "6.0.2",
"copyfiles": "2.4.1",
"husky": "~6.0.0",
"jasmine-core": "3.7.1",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.3.2",
"karma-chrome-launcher": "3.1.0",
"karma-cli": "2.0.0",
"karma-coverage": "^2.0.3",
"karma-jasmine": "4.0.1",
"karma-jasmine-html-reporter": "1.5.4",
"karma-mocha-reporter": "^2.2.5",
"markdownlint-cli": "~0.27.1",
"ng-packagr": "^11.2.4",
"pre-commit": "1.2.2",
"prettier": "2.2.1",
"puppeteer": "^9.0.0",
"sass": "^1.32.11",
"ts-node": "9.1.1",
"tslint": "6.1.3",
"typescript": "4.1.5"
}
}