generated from wayfair-incubator/oss-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 923 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
28
29
30
31
32
33
34
35
36
{
"name": "@wayfair/one-version",
"version": "0.5.0",
"description": "Opinionated Monorepo Dependency Management CLI",
"bin": "src/index.js",
"main": "src/index.js",
"engines": {
"node": "^16 || ^18 || ^20"
},
"repository": "git@github.com:wayfair/one-version.git",
"author": "finn-orsini <orsini.seraphina@gmail.com>",
"license": "MIT",
"files": [
"src/**/*.js",
"!src/**/*.test.js",
"!src/__fixtures__/**/*"
],
"scripts": {
"test": "jest",
"lint": "eslint src/**/*.js",
"lint:md": "markdownlint **/*.md --ignore node_modules",
"format": "prettier --write src/**/*.js",
"format:check": "prettier --check src/**/*.js"
},
"devDependencies": {
"eslint": "^8.34.0",
"jest": "^29.4.3",
"markdownlint-cli": "^0.33.0",
"prettier": "^2.8.4"
},
"dependencies": {
"chalk": "^4",
"commander": "^10"
},
"packageManager": "yarn@3.4.1"
}