-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 1.91 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
{
"name": "@checkup/migrator",
"version": "0.0.1",
"description": "A migration tool for the Checkup framework",
"repository": {
"type": "git",
"url": "https://github.com/checkupjs/migrator.git"
},
"license": "MIT",
"author": "scalvert <[email protected]>",
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": "./bin/index.mjs",
"files": [
"bin",
"dist"
],
"scripts": {
"build": "tsc",
"lint": "eslint .",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"test": "npm-run-all lint test:*",
"test:vitest": "vitest run"
},
"dependencies": {
"es-main": "^1.2.0",
"fs-extra": "^10.0.0",
"log-symbols": "^4.0.0",
"meow": "^10.1.2",
"typescript": "^4.6.2"
},
"devDependencies": {
"@scalvert/bin-tester": "^2.1.1",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"execa": "^5.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.0",
"release-it": "^14.2.1",
"release-it-lerna-changelog": "^3.1.0",
"tmp": "^0.2.1",
"vitest": "^0.16.0"
},
"engines": {
"node": ">= 14"
},
"volta": {
"node": "16.13.0",
"npm": "8.13.2"
},
"publishConfig": {
"access": "public",
"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"
}
}
}