62 строки
1.5 KiB
JSON
62 строки
1.5 KiB
JSON
{
|
|
"name": "@mixer/parallel-prettier",
|
|
"version": "2.0.0",
|
|
"description": "Concurrent prettier runner",
|
|
"main": "./dist/index.js",
|
|
"bin": {
|
|
"pprettier": "./dist/index.js"
|
|
},
|
|
"scripts": {
|
|
"prepare": "tsc",
|
|
"build": "tsc",
|
|
"hello": "node --inspect=9229 hello.js",
|
|
"fmt": "tsc && node dist/index --write \"src/**/*.ts\" && npm run test:lint -- --fix",
|
|
"test": "npm run test:lint && npm run test:fmt",
|
|
"test:lint": "eslint \"src/**/*.ts\"",
|
|
"test:fmt": "node dist/index \"src/**/*.ts\" --check"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/mixer/parallel-prettier.git"
|
|
},
|
|
"keywords": [
|
|
"prettier",
|
|
"parallel",
|
|
"concurrent",
|
|
"mixer"
|
|
],
|
|
"author": "Connor Peet <connor@peet.io>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/mixer/parallel-prettier/issues"
|
|
},
|
|
"homepage": "https://github.com/mixer/parallel-prettier#readme",
|
|
"dependencies": {
|
|
"chalk": "^4.1.0",
|
|
"commander": "^7.0.0",
|
|
"glob-stream": "^6.1.0",
|
|
"ignore": "^5.1.8",
|
|
"ora": "^5.3.0",
|
|
"prettier": "^2.0.4",
|
|
"rxjs": "^6.6.3"
|
|
},
|
|
"peerDependencies": {
|
|
"prettier": "^2.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/glob-stream": "^6.1.0",
|
|
"@types/node": "^14.14.22",
|
|
"@types/prettier": "^2.1.6",
|
|
"@typescript-eslint/eslint-plugin": "^4.14.0",
|
|
"@typescript-eslint/parser": "^4.14.0",
|
|
"eslint": "^7.18.0",
|
|
"typescript": "^4.1.3"
|
|
},
|
|
"prettier": {
|
|
"trailingComma": "all",
|
|
"singleQuote": true,
|
|
"printWidth": 100,
|
|
"tabWidth": 2
|
|
}
|
|
}
|