-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
61 lines (61 loc) · 1.32 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
{
"name": "eslint-plugin-no-smart-quotes",
"version": "1.4.2",
"description": "Prevent the use of curly quote/apostrophe characters",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"quotes",
"smart-quotes"
],
"author": "Sean S. LeBlanc <sean.s.leblanc@gmail.com>",
"main": "lib/index.js",
"scripts": {
"test": "mocha tests --recursive"
},
"dependencies": {
"requireindex": "^1.2.0",
"string.prototype.matchall": "^4.0.2"
},
"devDependencies": {
"eslint": "^6.8.0",
"mocha": "^10.2.0",
"vue-eslint-parser": "^8.0.0"
},
"peerDependencies": {
"vue-eslint-parser": "^8.0.0"
},
"peerDependenciesMeta": {
"vue-eslint-parser": {
"optional": true
}
},
"engines": {
"node": ">=0.10.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:seleb/eslint-plugin-no-smart-quotes.git"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json",
"package-lock.json"
]
}
]
]
}
}