forked from samuelmeuli/prettier-config
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 729 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 729 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
{
"name": "@samuelmeuli/prettier-config",
"version": "2.0.1",
"description": "My Prettier configuration",
"keywords": [
"prettier",
"config",
"prettier-config",
"format"
],
"author": {
"name": "Samuel Meuli",
"email": "me@samuelmeuli.com",
"url": "https://samuelmeuli.com"
},
"repository": "github:samuelmeuli/prettier-config",
"license": "MIT",
"files": [
"index.js"
],
"main": "./index.js",
"scripts": {
"format": "prettier --write '**/*.{css,html,js,json,jsx,less,md,scss,ts,tsx,vue,yaml,yml}'",
"release": "np --no-tests"
},
"dependencies": {},
"peerDependencies": {
"prettier": "^2.0.0"
},
"devDependencies": {
"np": "^6.2.0",
"prettier": "^2.0.2"
},
"prettier": "./index.js"
}