-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.38 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
{
"name": "eslint-plugin-prefer-smart-quotes",
"version": "2.0.0",
"description": "Prefer the use of curly quote/apostrophe characters",
"author": "totallymoney",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:totallymoney/eslint-plugin-prefer-smart-quotes.git"
},
"keywords": [
"eslint",
"eslint-plugin",
"quotes",
"smart-quotes",
"smart-quotes-only"
],
"main": "lib/index.js",
"scripts": {
"test": "mocha tests --recursive",
"semantic-release": "semantic-release"
},
"peerDependencies": {
"eslint": ">=0.8.0"
},
"dependencies": {
"requireindex": "^1.2.0",
"string.prototype.matchall": "^4.0.6"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"eslint": "^7.32.0",
"mocha": "^9.1.3",
"semantic-release": "^18.0.0"
},
"engines": {
"node": ">=0.14.17"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json",
"package-lock.json"
]
}
],
"@semantic-release/github"
]
}
}