-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.08 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": "@patricktabar/prettier-config",
"version": "1.3.6",
"private": false,
"description": "A personal, shareable Prettier configuration",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/patricktabar/prettier-config",
"bugs": {
"url": "https://github.com/patricktabar/prettier-config/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patricktabar/prettier-config.git"
},
"scripts": {
"test": "npm run test:check && npm run test:write",
"test:check": "prettier --config ./index.js --check test/",
"test:write": "prettier --config ./index.js --write test/",
"change": "npx changeset",
"version": "npx changeset version",
"release": "npx changeset publish"
},
"keywords": [
"prettier",
"config",
"configuration"
],
"author": "Patrick Tabarelli <[email protected]>",
"license": "MIT",
"devDependencies": {
"prettier": "^3.2.5"
},
"dependencies": {
"@changesets/cli": "^2.27.1"
}
}