-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.14 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
41
42
43
44
45
46
47
{
"name": "@dunggramer/prettier",
"version": "4.1.0",
"description": "The shareable configuration for Prettier in your project",
"keywords": [
"format code",
"formatting rules",
"formatting style",
"formatting",
"prettier",
"prettier-config",
"prettierconfig",
"standard style",
"standard"
],
"homepage": "https://github.com/DungGramer/prettier#readme",
"bugs": {
"url": "https://github.com/DungGramer/prettier/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DungGramer/prettier.git"
},
"license": "MIT",
"author": {
"name": "DungGramer",
"email": "[email protected]",
"url": "https://dunggramer.com"
},
"main": "prettier.config.js",
"files": [
"airbnb",
"angular",
"react-native",
"react",
"typescript-eslint",
"vuejs",
"prettier.config.js",
"constants.js"
],
"scripts": {
"format": "prettier --ignore-path='.gitignore' --list-different --write .",
"format:check": "prettier --ignore-path='.gitignore' --check .",
"prepublish": "npx npm-packlist-cli"
},
"prettier": "./prettier.config.js"
}