-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 949 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 949 Bytes
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": "prettier-config-atomic",
"version": "3.0.0",
"description": "The Prettier configuration used in atom-community",
"repository": "https://github.com/atom-community/prettier-config-atomic",
"license": "MIT",
"author": "Amin Yahyaabadi",
"main": "./prettier.config.js",
"files": [
"prettier.config.js"
],
"scripts": {
"bump": "ncu -u",
"format": "prettier --write .",
"lint": "eslint . --fix",
"test.format": "prettier . --check",
"test.lint": "eslint ."
},
"dependencies": {
"prettier": "^2.4.1",
"prettier-plugin-jsdoc": "^0.3.24",
"prettier-plugin-packagejson": "^2.2.13",
"prettier-plugin-toml": "^0.3.1",
"sort-package-json": "github:aminya/sort-package-json"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-atomic": "^1.16.3"
},
"keywords": [
"prettier",
"prettier-config",
"prettier-preset",
"format",
"beautify"
]
}