-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
89 lines (89 loc) · 3.46 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
{
"name": "angular2-promise-buttons",
"version": "6.0.1",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/johannesjo/angular2-promise-buttons.git"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test --browsers ChromeHeadless --watch=false",
"lint": "ng lint",
"e2e": "ng e2e",
"demo": "run-s demo.build demo.copy-readme demo.gh-pages",
"demo.build": "ng build --aot --configuration production --base-href='./'",
"demo.copy-readme": "node scripts/copy-readme-to-demo.js",
"demo.gh-pages": "gh-pages -d dist/demo",
"lib": "run-s lib.build copy",
"lib.build": "ng build --configuration production angular2-promise-buttons",
"copy": "run-s copy.licence copy.readme",
"copy.licence": "copyfiles ./LICENSE ./dist/angular2-promise-buttons",
"copy.readme": "copyfiles ./README.md ./dist/angular2-promise-buttons",
"pub": "run-s lib && cd ./dist/angular2-promise-buttons/ && npm publish && cd .. && cd ..",
"patch": "npm version patch && cd ./projects/angular2-promise-buttons && npm version patch && cd .. && cd .. && git add . && git commit -am\"chore: update lib version\"",
"patch-release_": "run-s lib demo patch pub",
"patch-release": "npm run patch-release_",
"major": "npm version major && cd ./projects/angular2-promise-buttons && npm version major && cd .. && cd .. && git add . && git commit -am\"chore: update lib version\"",
"major-release_": "run-s lib demo major pub",
"major-release": "npm run major-release_",
"test-coverage": "ng test --browsers ChromeHeadless --code-coverage --watch=false",
"coveralls": "YOURPACKAGE_COVERAGE=1 cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"peerDependencies": {},
"devDependencies": {
"@angular-devkit/build-angular": "^12.2.18",
"@angular/cli": "^12.2.18",
"@angular/common": "^12.2.17",
"@angular/compiler": "^12.2.17",
"@angular/compiler-cli": "^12.2.17",
"@angular/core": "^12.2.17",
"@angular/forms": "^12.2.17",
"@angular/platform-browser": "^12.2.17",
"@angular/platform-browser-dynamic": "^12.2.17",
"@angular/router": "^12.2.17",
"@linnenschmidt/build-ng-packagr": "^9.0.0",
"@types/bluebird": "^3.5.29",
"@types/core-js": "^2.5.2",
"@types/jasmine": "~3.6.0",
"@types/jquery": "^3.3.32",
"@types/node": "^13.7.0",
"angular2-template-loader": "^0.6.2",
"bluebird": "^3.7.2",
"bootstrap": "^4.4.1",
"bootstrap-material-design": "^4.1.2",
"codelyzer": "^6.0.0",
"conventional-changelog-cli": "^2.0.31",
"conventional-github-releaser": "^3.1.3",
"copyfiles": "^2.2.0",
"core-js": "^3.6.4",
"coveralls": "^3.0.9",
"gh-pages": "^2.2.0",
"intl": "^1.2.5",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"jquery": "^3.5.0",
"karma": "~6.3.16",
"karma-chrome-launcher": "~3.1.0",
"karma-cli": "~2.0.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"karma-phantomjs-launcher": "^1.0.4",
"marked": "^2.0.0",
"ng-packagr": "^12.2.7",
"npm-run-all": "^4.1.5",
"protractor": "~7.0.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.4",
"ts-node": "~8.6.2",
"tslib": "^2.0.0",
"tslint": "~6.1.0",
"typescript": "~4.3.5",
"wallaby-webpack": "3.9.15",
"web-animations-js": "^2.3.2",
"zone.js": "~0.11.4"
}
}