-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 963 Bytes
/
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
{
"name": "@shiftcode/ngx-core",
"version": "6.0.0",
"repository": "https://github.com/shiftcode/sc-ng-commons-public",
"license": "MIT",
"author": "shiftcode GmbH <[email protected]>",
"sideEffects": false,
"scripts": {
"lint": "npm run lint:lib -- --fix && npm run lint:test -- --fix",
"lint:ci": "npm run lint:lib && npm run lint:test",
"lint:lib": "tslint --format codeFrame --project ./tsconfig.lib.json",
"lint:test": "tslint --format codeFrame --project ./tsconfig.spec.json",
"prettier": "prettier --write --config ../../.prettierrc.yml 'src/**/*.ts'",
"prettier:staged": "prettier --write --config ../../.prettierrc.yml"
},
"dependencies": {
"tslib": "^2.5.0"
},
"peerDependencies": {
"@angular/common": "^18.0.0",
"@angular/core": "^18.0.0",
"@angular/platform-browser": "^18.0.0",
"@angular/router": "^18.0.0",
"@shiftcode/utilities": "^3.0.0",
"rxjs": "^6.5.3 || ^7.4.0"
}
}