-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
96 lines (96 loc) · 2.65 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@nerdwallet/shepherd",
"version": "2.6.1",
"description": "A utility for applying code changes across many repositories",
"type": "module",
"keywords": [
"codemod",
"codemods",
"migration"
],
"homepage": "https://github.com/NerdWalletOSS/shepherd#readme",
"bugs": {
"url": "https://github.com/NerdWalletOSS/shepherd/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NerdWalletOSS/shepherd.git"
},
"license": "Apache-2.0",
"author": "Nathan Walters",
"contributors": [
{
"name": "Aori Nevo"
},
{
"name": "Kavitha Kesavalu"
}
],
"main": "./lib/cli.js",
"bin": {
"shepherd": "./lib/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.cjs.json",
"build:watch": "yarn build --watch",
"fix-lint": "eslint src/**/*.ts --fix && prettier --write .",
"lint": "eslint src/**/*.ts && prettier --check .",
"prepublishOnly": "yarn test && yarn build",
"test": "jest --coverage src/",
"e2e-test": "npm run build && jest --config=jest.e2e.config.cjs e2e/"
},
"files": [
"lib"
],
"dependencies": {
"@octokit/core": "^6.1.2",
"@octokit/plugin-retry": "^7.1.2",
"@octokit/plugin-throttling": "^9.3.2",
"@octokit/rest": "^21.0.2",
"@types/js-yaml": "^4.0.9",
"chalk": "^5.3.0",
"child-process-promise": "^2.2.1",
"commander": "^12.1.0",
"fs-extra": "^11.2.0",
"joi": "^17.13.3",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"log-symbols": "^7.0.0",
"netrc": "^0.1.4",
"ora": "^8.1.0",
"preferences": "^2.0.2",
"simple-git": "^3.27.0"
},
"devDependencies": {
"@babel/preset-env": "^7.25.7",
"@babel/preset-typescript": "^7.25.7",
"@eslint/js": "^9.12.0",
"@octokit/plugin-rest-endpoint-methods": "^13.2.6",
"@octokit/types": "^13.6.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.13",
"@types/lodash": "^4.17.10",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"babel-jest": "^29.7.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"globals": "^15.10.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"semantic-release": "^24.1.2",
"ts-jest": "^29.2.5",
"typescript": "5.7",
"typescript-eslint": "^8.8.0"
},
"publishConfig": {
"access": "public"
}
}