-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.33 KB
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
{
"name": "cli",
"version": "0.0.1",
"keywords": [
"codemod-cli"
],
"repository": "git@github.com:thoov/stitch.git",
"license": "MIT",
"author": "Travis Hoover <thoov7@gmail.com>",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"stitch": "./bin/stitch"
},
"files": [
"/bin",
"/lib"
],
"scripts": {
"build": "tsc --build && yarn copy-files",
"copy-files": "cp -R ./src/templates ./lib && cp -R src/codemods ./lib",
"lint": "eslint . --cache --ext .ts",
"prepare": "yarn build",
"test": "jest --runInBand"
},
"resolutions": {
"resolve-package-path": "^4.0.0"
},
"dependencies": {
"@checkup/cli": "^1.0.0-beta.11",
"@checkup/core": "^1.0.0-beta.11",
"@npmcli/arborist": "^2.6.0",
"codemod-cli": "^3.2.0",
"ejs": "^3.1.6",
"ora": "^5.4.0",
"semver": "^7.3.5",
"v8-compile-cache": "^2.3.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@checkup/plugin": "^1.0.0-beta.11",
"@checkup/test-helpers": "^1.0.0-beta.11",
"@microsoft/jest-sarif": "^1.0.0-beta.0",
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.23",
"@types/sarif": "^2.1.3",
"@types/semver": "^7.3.6",
"@types/tmp": "^0.2.0",
"@types/yargs": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-tsdoc": "^0.2.14",
"eslint-plugin-unicorn": "^32.0.1",
"execa": "^5.0.0",
"fixturify-project": "^3.0.2",
"jest": "^26.6.3",
"prettier": "^2.3.0",
"release-it": "^14.2.1",
"release-it-lerna-changelog": "^3.1.0",
"tmp": "^0.2.1",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
},
"engines": {
"node": ">= 12.22.1"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
},
"volta": {
"node": "12.22.1",
"yarn": "1.22.10"
}
}