-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 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
{
"name": "@angular-ru/tsconfig",
"version": "12.1.0",
"description": "Shared TypeScript config for Angular projects",
"keywords": [
"tsconfig",
"typescript",
"ts",
"config",
"configuration"
],
"repository": "https://github.com/Angular-RU/angular-tsconfig",
"license": "MIT",
"author": {
"name": "Maxim Ivanov",
"email": "[email protected]",
"url": "https://github.com/Angular-RU"
},
"main": "tsconfig.json",
"files": [
"tsconfig.json"
],
"scripts": {
"format": "npx sort-package-json && npx prettier --write \"**/*.{ts,html,css,scss,md,js,json}\"",
"test": "echo 'test'"
},
"prettier": "@angular-ru/prettier-config",
"devDependencies": {
"@angular-ru/prettier-config": "12.7.0",
"sort-package-json": "1.44.0",
"typescript": "3.9.3"
},
"peerDependencies": {
"tslib": ">=1.11.1 < 3.0.0",
"typescript": ">=3.7.2 < 4.0.0"
}
}