-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 806 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 806 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
31
32
33
34
35
36
37
38
39
{
"name": "@bentinata/fmt",
"version": "1.2.0",
"description": "Opinionated prettier + eslint formatter",
"main": "src/index.js",
"files": [
"bin",
"src",
"!src/*.test.js"
],
"bin": {
"fmt": "bin/fmt.js"
},
"scripts": {
"test": "jest --coverage --collectCoverageFrom src/**/*.js"
},
"keywords": [],
"author": "Ben Nata <_@bentinata.com>",
"license": "ISC",
"dependencies": {
"fast-glob": "^3.2.11",
"lodash": "^4.17.21",
"minimist": "^1.2.6",
"picocolors": "^1.0.0"
},
"peerDependencies": {
"eslint": ">=8",
"eslint-config-prettier": ">=8",
"prettier": ">=2"
},
"repository": {
"type": "git",
"url": "https://github.com/bentinata/fmt"
},
"devDependencies": {
"jest": "^28.1.2",
"memfs": "^3.4.7"
}
}