forked from josephfrazier/editorconfig-to-prettier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 808 Bytes
/
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
{
"name": "editorconfig-to-prettier",
"version": "0.1.1",
"description": "Converts an `editorconfig`-parsed object to a `prettier` configuration",
"main": "index.js",
"files": [],
"scripts": {
"lint": "prettier --list-different *.js",
"fix": "prettier --write *.js",
"prepublishOnly": "npm test",
"pretest": "npm run lint",
"test": "node test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/josephfrazier/editorconfig-to-prettier.git"
},
"author": "Joseph Frazier <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/josephfrazier/editorconfig-to-prettier/issues"
},
"homepage": "https://github.com/josephfrazier/editorconfig-to-prettier#readme",
"devDependencies": {
"prettier": "^1.7.4"
}
}