-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
77 lines (77 loc) · 2.57 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
{
"name": "@laijuthomas/angular-table",
"version": "1.1.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build-prod": "ng build --configuration production",
"test": "ng test",
"lint:lib": "ng lint angular-table",
"e2e": "ng e2e",
"build-watch:lib": "ng build angular-table --watch",
"test:lib": "ng test angular-table",
"build:lib": "ng build angular-table",
"build-prod:lib": "ng build angular-table --configuration production",
"release": "standard-version",
"publish:lib": "npm run copy:readme && npm run copy:changelog && npm run copy:license && npm publish ./dist/angular-table --access public",
"copy:readme": "cpx README.md dist/angular-table",
"copy:changelog": "cpx CHANGELOG.md dist/angular-table",
"copy:license": "cpx LICENSE dist/angular-table",
"test-ci": "ng test angular-table --code-coverage --watch=false --browsers=ChromeHeadless && cat ./coverage/angular-table/lcov.info | coveralls",
"lint": "ng lint"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.2.12",
"@angular/common": "^16.2.12",
"@angular/compiler": "^16.2.12",
"@angular/core": "^16.2.12",
"@angular/forms": "^16.2.12",
"@angular/platform-browser": "^16.2.12",
"@angular/platform-browser-dynamic": "^16.2.12",
"@angular/router": "^16.2.12",
"bootstrap": "^4.6.0",
"font-awesome": "^4.7.0",
"rxjs": "~6.5.4",
"standard-version": "^9.5.0",
"tslib": "^2.2.0",
"zone.js": "~0.13.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.10",
"@angular-eslint/builder": "16.3.1",
"@angular-eslint/eslint-plugin": "16.3.1",
"@angular-eslint/eslint-plugin-template": "16.3.1",
"@angular-eslint/schematics": "16.3.1",
"@angular-eslint/template-parser": "16.3.1",
"@angular/cli": "^16.2.10",
"@angular/compiler-cli": "^16.2.12",
"@angular/language-service": "^16.2.12",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "~2.0.8",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"codelyzer": "^6.0.0",
"coveralls": "^3.1.0",
"cpx": "^1.5.0",
"eslint": "^8.51.0",
"ng-packagr": "^16.2.3",
"protractor": "~7.0.0",
"ts-node": "~8.5.0",
"typescript": "~4.9.5"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}