forked from JsDaddy/ngx-mask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 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
112
{
"name": "ngx-mask",
"version": "9.0.2",
"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}\"",
"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 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",
"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": "9.1.2",
"@angular/cdk": "9.2.1",
"@angular/common": "9.1.2",
"@angular/compiler": "9.1.2",
"@angular/core": "9.1.2",
"@angular/forms": "9.1.2",
"@angular/platform-browser": "9.1.2",
"@angular/platform-browser-dynamic": "9.1.2",
"@angular/router": "9.1.2",
"bootstrap": "4.3.1",
"intl": "1.2.5",
"npm-check-updates": "3.1.23",
"rxjs": "6.5.5",
"tslib": "^1.10.0",
"zone.js": "~0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.901.1",
"@angular-devkit/build-ng-packagr": "~0.901.1",
"@angular/cli": "9.1.1",
"@angular/compiler-cli": "9.1.2",
"@angular/language-service": "^9.1.2",
"@angular/material": "9.2.1",
"@commitlint/cli": "~8.3.5",
"@commitlint/config-conventional": "~8.3.4",
"@types/highlight.js": "9.12.3",
"@types/jasmine": "3.4.2",
"@types/node": "^12.11.1",
"angular-cli-ghpages": "0.6.0",
"angular-http-server": "~1.9.0",
"codelyzer": "^5.1.2",
"concurrently": "5.1.0",
"copyfiles": "2.2.0",
"husky": "~3.0.8",
"jasmine-core": "3.5.0",
"jasmine-expect": "~4.0.2",
"jasmine-spec-reporter": "4.2.1",
"karma": "4.3.0",
"karma-chrome-launcher": "3.1.0",
"karma-cli": "2.0.0",
"karma-coverage-istanbul-reporter": "2.1.0",
"karma-jasmine": "2.0.1",
"karma-jasmine-html-reporter": "1.4.2",
"karma-mocha-reporter": "^2.2.5",
"markdownlint-cli": "~0.18.0",
"ng-packagr": "^9.0.0",
"node-sass": "^4.12.0",
"pre-commit": "1.2.2",
"prettier": "1.19.1",
"puppeteer": "^1.20.0",
"ts-node": "8.4.1",
"tslint": "5.20.0",
"typescript": "3.8.3"
}
}