-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.51 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
{
"name": "@adonisjs/prettier-config",
"description": "Prettier config preset for AdonisJS packages and applications",
"version": "1.5.0",
"type": "module",
"files": [
"index.cjs"
],
"main": "./index.cjs",
"exports": {
".": "./index.cjs"
},
"scripts": {
"test": "echo 'No tests'",
"release": "release-it"
},
"devDependencies": {
"@release-it/conventional-changelog": "^11.0.0",
"release-it": "^20.0.1"
},
"homepage": "https://github.com/adonisjs/prettier-config#readme",
"bugs": {
"url": "https://github.com/adonisjs/prettier-config/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adonisjs/prettier-config.git"
},
"keywords": [
"prettier",
"adonisjs"
],
"author": "Julien Ripouteau <julien@ripouteau.com>",
"contributors": [
"Harminder Virk <virk@adonisjs.com>",
"Romain Lanz <romain.lanz@pm.me>"
],
"license": "MIT",
"publishConfig": {
"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"
}
}
}
},
"dependencies": {
"prettier-edge": "^1.0.0"
}
}