123456789101112131415161718192021222324252627 |
- {
- "name": "editorconfig-to-prettier",
- "version": "0.2.0",
- "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 <1212jtraceur@gmail.com>",
- "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"
- }
- }
|