forked from mattlewis92/angular-confirmation-popover
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.83 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": "angular-confirmation-popover",
"version": "6.0.0",
"description": "An angular 10.0+ bootstrap confirmation popover",
"scripts": {
"start": "concurrently --raw \"ng serve --open\" \"npm run test:watch\"",
"build:demo": "ng build --prod",
"build:lib": "copyfiles package.json projects/angular-confirmation-popover && ng build angular-confirmation-popover --prod && npm run copyfiles",
"build:clean": "del dist",
"copyfiles": "copyfiles CHANGELOG.md README.md LICENSE dist/angular-confirmation-popover",
"test": "npm run lint && ng test angular-confirmation-popover --watch=false --code-coverage && npm run build:lib && npm run build:clean",
"test:watch": "ng test angular-confirmation-popover",
"lint": "ng lint",
"commit": "git-cz",
"codecov": "cat coverage/lcov.info | codecov",
"compodoc": "compodoc -p tsconfig-compodoc.json -d dist/demo/docs --disableGraph --disableCoverage --disablePrivate --disableInternal --disableLifeCycleHooks --disableProtected",
"prerelease": "npm test",
"release:git": "standard-version && git push --follow-tags origin master",
"release:npm": "npm run build:lib && npm publish dist/angular-confirmation-popover",
"release": "npm run release:git && npm run release:npm",
"postrelease": "npm run gh-pages",
"gh-pages": "npm run build:clean && npm run build:demo && npm run compodoc && ng deploy && npm run build:clean"
},
"husky": {
"hooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "pretty-quick --staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattlewis92/angular-confirmation-popover.git"
},
"keywords": [
"angular",
"angular2",
"bootstrap",
"popover",
"confirm",
"confirmation"
],
"author": "Matt Lewis",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattlewis92/angular-confirmation-popover/issues"
},
"homepage": "https://github.com/mattlewis92/angular-confirmation-popover#readme",
"dependencies": {
"positioning": "^2.0.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1000.1",
"@angular-devkit/build-ng-packagr": "~0.1000.1",
"@angular/animations": "~10.0.2",
"@angular/cli": "~10.0.1",
"@angular/common": "~10.0.2",
"@angular/compiler": "~10.0.2",
"@angular/compiler-cli": "~10.0.2",
"@angular/core": "~10.0.2",
"@angular/forms": "~10.0.2",
"@angular/language-service": "~10.0.2",
"@angular/platform-browser": "~10.0.2",
"@angular/platform-browser-dynamic": "~10.0.2",
"@angular/router": "~10.0.2",
"@compodoc/compodoc": "^1.1.11",
"@types/chai": "^4.2.11",
"@types/chai-dom": "0.0.10",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.14",
"@types/sinon": "^9.0.4",
"@types/sinon-chai": "^3.2.4",
"angular-cli-ghpages": "^0.6.2",
"chai": "^4.2.0",
"chai-dom": "^1.8.2",
"codecov": "^3.7.0",
"codelyzer": "^6.0.0",
"commitizen": "^4.1.2",
"concurrently": "^5.2.0",
"copyfiles": "^2.3.0",
"cz-conventional-changelog": "^3.2.0",
"del-cli": "^3.0.1",
"husky": "^4.2.5",
"karma": "^5.1.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-mocha": "^2.0.1",
"mocha": "^8.0.1",
"ng-packagr": "^10.0.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"rxjs": "^6.6.0",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"standard-version": "^8.0.0",
"ts-node": "^8.10.2",
"tslib": "^2.0.0",
"tslint": "^6.1.2",
"tslint-config-mwl": "^0.8.0",
"typescript": "~3.9.6",
"validate-commit-msg": "^2.14.0",
"zone.js": "~0.10.2"
},
"peerDependencies": {
"@angular/common": ">=10.0.0",
"@angular/core": ">=10.0.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}