-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
94 lines (94 loc) · 2.27 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
{
"name": "@adonisjs/upgrade-kit",
"description": "CLI tool to migrate AdonisJS v5 projects to v6",
"version": "1.5.0",
"engines": {
"node": ">=20.6.0"
},
"main": "build/index.js",
"type": "module",
"files": [
"build",
"!build/test_helpers",
"!build/tests"
],
"bin": {
"adonis-upgrade-kit": "build/bin/run.js"
},
"exports": {
".": "./build/index.js",
"./types": "./build/src/types.js"
},
"scripts": {
"clean": "del-cli build",
"copy:templates": "copyfiles \"stubs/**/*.stub\" build",
"typecheck": "tsc --noEmit",
"lint": "eslint . --ext=.ts",
"format": "prettier --write .",
"quick:test": "node --enable-source-maps --loader=ts-node/esm bin/test.ts",
"pretest": "npm run lint",
"test": "c8 npm run quick:test",
"prebuild": "npm run lint && npm run clean",
"build": "tsc",
"postbuild": "npm run copy:templates",
"release": "np",
"version": "npm run build",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@adonisjs/core": "6.13.1",
"@adonisjs/eslint-config": "^1.3.0",
"@adonisjs/prettier-config": "^1.4.0",
"@adonisjs/tsconfig": "^1.4.0",
"@japa/assert": "3.0.0",
"@japa/file-system": "2.3.0",
"@japa/runner": "3.1.4",
"@japa/snapshot": "2.0.5",
"@swc/core": "1.7.26",
"@types/dedent": "^0.7.2",
"@types/node": "^22.5.5",
"c8": "^10.1.2",
"copyfiles": "^2.4.1",
"defu": "^6.1.4",
"del-cli": "^5.1.0",
"eslint": "^8.57.0",
"np": "^10.0.7",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "~5.6.2"
},
"dependencies": {
"@adonisjs/ace": "13.2.0",
"@antfu/install-pkg": "^0.4.1",
"@poppinss/cliui": "6.4.1",
"dedent": "^1.5.3",
"execa": "^9.3.1",
"ts-morph": "^23.0.0"
},
"author": "Julien Ripouteau <[email protected]>",
"license": "MIT",
"keywords": [],
"eslintConfig": {
"extends": "@adonisjs/eslint-config/package"
},
"prettier": "@adonisjs/prettier-config",
"publishConfig": {
"access": "public",
"tag": "latest"
},
"np": {
"message": "chore(release): %s",
"tag": "latest",
"branch": "main",
"anyBranch": false
},
"c8": {
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**"
]
}
}