-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
127 lines (127 loc) · 3.16 KB
/
package.json
File metadata and controls
127 lines (127 loc) · 3.16 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "@adityadarma/adonis-service-repository",
"description": "",
"version": "3.1.5",
"engines": {
"node": ">=20.6.0"
},
"type": "module",
"files": [
"build/commands",
"build/contracts",
"build/src",
"build/stubs",
"build/index.d.ts",
"build/index.js",
"build/configure.d.ts",
"build/configure.js"
],
"exports": {
".": "./build/index.js",
"./exceptions/*": "./build/src/exceptions/*.js",
"./commands": "./build/commands/main.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 --import=ts-node-maintained/register/esm --enable-source-maps bin/test.ts",
"pretest": "npm run lint",
"test": "c8 npm run quick:test",
"prebuild": "npm run lint && npm run clean",
"build": "npm run clean && tsc",
"postbuild": "npm run copy:templates && npm run index:commands",
"release": "release-it",
"version": "npm run build",
"prepublishOnly": "npm run build",
"index:commands": "adonis-kit index build/commands"
},
"devDependencies": {
"@adonisjs/assembler": "^7.8.2",
"@adonisjs/core": "^6.15.0",
"@adonisjs/eslint-config": "^2.0.0",
"@adonisjs/prettier-config": "^1.4.0",
"@adonisjs/tsconfig": "^1.4.0",
"@japa/assert": "^4.0.1",
"@japa/runner": "^4.2.0",
"@release-it/conventional-changelog": "^9.0.3",
"@swc/core": "1.11.24",
"@types/luxon": "^3.4.2",
"@types/node": "^22.0.0",
"c8": "^10.1.3",
"copyfiles": "^2.4.1",
"del-cli": "^6.0.0",
"eslint": "^9.26.0",
"luxon": "^3.5.0",
"np": "^10.0.6",
"prettier": "^3.5.3",
"release-it": "^17.11.0",
"ts-node-maintained": "^10.9.5",
"typescript": "~5.8"
},
"peerDependencies": {
"@adonisjs/lucid": "^21.2.0"
},
"keywords": [
"service-repository-pettern",
"service-pettern",
"repository-pettern",
"adonis"
],
"author": "Aditya Darma <adhit.boys1@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/adityadarma/adonis-service-repository#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/adityadarma/adonis-service-repository.git"
},
"publishConfig": {
"access": "public",
"tag": "latest",
"provenance": true
},
"release-it": {
"git": {
"requireCleanWorkingDir": true,
"requireUpstream": true,
"commitMessage": "chore(release): ${version}",
"tagAnnotation": "v${version}",
"push": true,
"tagName": "v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": true,
"skipChecks": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "angular"
}
}
}
},
"c8": {
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**"
]
},
"eslintConfig": {
"extends": "@adonisjs/eslint-config/package"
},
"prettier": "@adonisjs/prettier-config",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}