-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.41 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
{
"name": "@laijuthomas/angular-spinner",
"version": "1.2.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build-prod": "ng build --configuration production",
"test": "ng test",
"lint:lib": "ng lint angular-spinner",
"e2e": "ng e2e",
"build-watch:lib": "ng build angular-spinner --watch",
"test:lib": "ng test angular-spinner",
"build:lib": "ng build angular-spinner",
"build-prod:lib": "ng build angular-spinner --configuration production",
"release": "standard-version",
"publish:lib": "npm run copy:readme && npm run copy:changelog && npm run copy:license && npm publish ./dist/angular-spinner --access public",
"copy:readme": "cpx README.md dist/angular-spinner",
"copy:changelog": "cpx CHANGELOG.md dist/angular-spinner",
"copy:license": "cpx LICENSE dist/angular-spinner",
"test-ci": "ng test angular-spinner --code-coverage --watch=false --browsers=ChromeHeadless && cat ./coverage/angular-spinner/lcov.info | coveralls",
"lint": "ng lint"
},
"private": true,
"dependencies": {
"@angular/animations": "^17.2.2",
"@angular/common": "^17.2.2",
"@angular/compiler": "^17.2.2",
"@angular/core": "^17.2.2",
"@angular/forms": "^17.2.2",
"@angular/platform-browser": "^17.2.2",
"@angular/platform-browser-dynamic": "^17.2.2",
"@angular/router": "^17.2.2",
"bootstrap": "^4.6.0",
"rxjs": "~6.5.4",
"standard-version": "^9.5.0",
"tslib": "^2.2.0",
"zone.js": "~0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.2.1",
"@angular-eslint/builder": "17.2.1",
"@angular-eslint/eslint-plugin": "17.2.1",
"@angular-eslint/eslint-plugin-template": "17.2.1",
"@angular-eslint/schematics": "17.2.1",
"@angular-eslint/template-parser": "17.2.1",
"@angular/cli": "^17.2.1",
"@angular/compiler-cli": "^17.2.2",
"@angular/language-service": "^17.2.2",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "6.19.0",
"@typescript-eslint/parser": "6.19.0",
"coveralls": "^3.1.0",
"cpx": "^1.5.0",
"eslint": "^8.56.0",
"ng-packagr": "^17.2.0",
"typescript": "~5.3.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}