-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 854 Bytes
/
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
{
"name": "spell-check-urls",
"version": "0.5.1",
"main": "./lib/main",
"description": "A plugin to Atom's spell-check to mark URLs as valid words.",
"repository": "https://github.com/dmoonfire/spell-check-urls",
"license": "MIT",
"engines": {
"atom": ">=1.25.0 <2.0.0"
},
"scripts": {
"format": "prettier --write lib/*.js"
},
"dependencies": {
"url-regex": "^4.1.1"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@semantic-release/apm-config": "^8.0.0",
"husky": "^6.0.0",
"prettier": "^1.18.2",
"semantic-release": "^17.4.2"
},
"providedServices": {
"spell-check": {
"versions": {
"1.0.0": "provideSpellCheck"
}
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}