-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.34 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
{
"name": "@porkus1990/mopeds",
"version": "0.2.4",
"private": false,
"description": "A tool for updating peerDependencies in monorepos",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist/*.js", "dist/**/*.js"],
"scripts": {
"test": "jest --testPathPattern=./__tests__",
"lint": "eslint .",
"build": "tsc --build",
"clean": "tsc --build --clean",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/porkus1990/mopeds.git"
},
"bin": {
"mopeds": "./bin/mopeds"
},
"keywords": [
"monorepo",
"peerDependencies",
"update"
],
"author": "porkus1990",
"license": "ISC",
"bugs": {
"url": "https://github.com/porkus1990/mopeds/issues"
},
"homepage": "https://github.com/porkus1990/mopeds#readme",
"devDependencies": {
"@babel/preset-env": "^7.18.6",
"@types/jest": "^28.1.4",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.5.3",
"jest": "28.1.2",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"dependencies": {
"chalk": "4.1.2",
"commander": "^9.3.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"semver": "^7.3.7",
"ts-node": "^10.8.2"
}
}