-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
102 lines (102 loc) · 2.55 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
97
98
99
100
101
102
{
"name": "adonis-sail",
"type": "module",
"version": "1.0.0-beta.2",
"description": "⛵ Generate a ready-to-use docker environment for your Adonis application",
"author": "Julien Ripouteau <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/Julien-R44/adonis-sail#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Julien-R44/adonis-sail.git"
},
"bugs": {
"url": "https://github.com/Julien-R44/adonis-sail/issues"
},
"keywords": [
"adonisjs",
"adonis5",
"adonis6",
"docker",
"adonis-sail",
"docker-compose"
],
"exports": {
".": "./build/index.js",
"./commands": "./build/commands/main.js",
"./commands/*": "./build/commands/*.js"
},
"main": "build/index.js",
"files": [
"!build/bin",
"!build/tests",
"!build/tests_helpers",
"build"
],
"scripts": {
"test": "c8 pnpm quick:test",
"lint": "eslint .",
"clean": "del-cli build",
"compile": "pnpm lint && pnpm clean && tsc && pnpm copy:templates && pnpm index:commands",
"copy:templates": "copyfiles \"stubs/**/*.stub\" build",
"build": "pnpm compile",
"quick:test": "node --loader=ts-node/esm bin/test.ts",
"release": "pnpm build && release-it",
"index:commands": "adonis-kit index build/commands",
"typecheck": "tsc --noEmit",
"checks": "pnpm typecheck && pnpm lint"
},
"peerDependencies": {
"@adonisjs/core": "^6.0.0"
},
"dependencies": {
"@poppinss/utils": "^6.7.0"
},
"devDependencies": {
"@adonisjs/assembler": "^7.0.0",
"@adonisjs/core": "^6.2.0",
"@adonisjs/tsconfig": "^1.2.1",
"@japa/assert": "^2.1.0",
"@japa/expect-type": "^2.0.1",
"@japa/file-system": "^2.1.1",
"@japa/runner": "^3.1.1",
"@japa/snapshot": "2.0.4",
"@japa/spec-reporter": "^1.3.3",
"@julr/tooling-configs": "^2.1.0",
"@swc/core": "^1.3.102",
"@types/node": "^20.10.7",
"c8": "^9.0.0",
"copyfiles": "^2.4.1",
"del-cli": "^5.1.0",
"eslint": "^8.56.0",
"prettier": "^3.1.1",
"release-it": "^17.0.1",
"ts-node": "^10.9.2",
"typescript": "~5.3.3"
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"c8": {
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**",
"tests_helpers/**"
]
},
"prettier": "@julr/tooling-configs/prettier",
"release-it": {
"git": {
"commitMessage": "chore(release): ${version}",
"tagAnnotation": "release ${version}"
},
"github": {
"release": true,
"web": true
}
}
}