-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "@angular-ru/prettier-config",
"version": "0.0.0",
"description": "Shared Prettier config for Angular projects",
"keywords": [
"tsconfig",
"typescript",
"ts",
"config",
"configuration"
],
"repository": "https://github.com/Angular-RU/angular-prettier-tsconfig",
"license": "MIT",
"author": {
"name": "Maxim Ivanov",
"email": "[email protected]",
"url": "https://github.com/Angular-RU"
},
"main": "prettier.config.js",
"files": [
"prettier.config.js"
],
"scripts": {
"format": "npx sort-package-json && npx prettier --write \"**/*.{ts,html,css,scss,md,js,json}\"",
"test": "yarn format"
},
"dependencies": {
"prettier": "2.0.5"
},
"devDependencies": {
"@types/node": "13.13.5",
"npx": "10.2.2",
"sort-package-json": "1.44.0",
"ts-node": "8.10.2",
"typescript": "3.9.3"
},
"peerDependencies": {
"prettier": ">=2.0.0 <3.0.0"
}
}