-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
61 lines (61 loc) · 1.55 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@mixer/parallel-prettier",
"version": "2.0.3",
"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 <[email protected]>",
"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": "^7.0.0",
"ignore": "^5.1.8",
"ora": "^5.3.0",
"prettier": "^3.0.3",
"rxjs": "^6.6.3"
},
"peerDependencies": {
"prettier": "^3.0.0"
},
"devDependencies": {
"@types/glob-stream": "^6.1.0",
"@types/node": "^14.14.22",
"@types/prettier": "^3.0.0",
"@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
}
}