-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 883 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 883 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
{
"author": "Internxt <hello@internxt.com>",
"version": "2.0.1",
"name": "@internxt/prettier-config",
"description": "Prettier config for Internxt projects",
"keywords": [
"prettier",
"prettier-config",
"internxt"
],
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"lint": "npx prettier --check .",
"format": "npx prettier --write .",
"publish:npm": "npm publish --scope=@internxt --registry=https://registry.npmjs.org/ --access public",
"publish:github": "npm publish --scope=@internxt --registry=https://npm.pkg.github.com --tag latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/internxt/prettier-config.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/internxt/prettier-config/issues"
},
"homepage": "https://github.com/internxt/prettier-config#readme"
}