-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 876 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 876 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
{
"name": "prettier-config",
"version": "0.0.1",
"description": "Shared configuration for Prettier",
"homepage": "https://github.com/CheckerNetwork/prettier-config#readme",
"bugs": {
"url": "https://github.com/CheckerNetwork/prettier-config/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CheckerNetwork/prettier-config.git"
},
"license": "MIT",
"author": "",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"lint": "eslint && prettier --check .",
"lint:fix": "eslint --fix && prettier --write ."
},
"prettier": ".",
"dependencies": {
"prettier-plugin-jsdoc": "^1.3.2",
"prettier-plugin-multiline-arrays": "^4.0.3",
"prettier-plugin-packagejson": "^2.5.10"
},
"devDependencies": {
"eslint": "^9.25.1",
"neostandard": "^0.12.1",
"prettier": "^3.5.3"
}
}