-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
62 lines (62 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
62
{
"name": "eslint-plugin-jasmine",
"version": "0.0.0-development",
"description": "ESLint rules for Jasmine",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"pretest": "standard",
"test": "mocha",
"watch": "mocha --watch",
"semantic-release": "semantic-release"
},
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin",
"jasmine"
],
"author": "Tom Vincent <[email protected]> (http://tlvince.com/)",
"contributors": [
{
"name": "Nicolas Fernandez",
"url": "https://github.com/burabure"
},
{
"name": "Diana Suvorova",
"url": "https://github.com/DianaSuvorova"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tlvince/eslint-plugin-jasmine.git"
},
"bugs": {
"url": "https://github.com/tlvince/eslint-plugin-jasmine/issues"
},
"homepage": "https://github.com/tlvince/eslint-plugin-jasmine",
"devDependencies": {
"eslint": "6.8.0",
"ghooks": "2.0.4",
"mocha": "7.1.2",
"standard": "14.3.4",
"validate-commit-msg": "2.14.0",
"semantic-release": "24.0.0"
},
"config": {
"ghooks": {
"commit-msg": "validate-commit-msg"
}
},
"engines": {
"npm": ">=6",
"node": ">=8"
},
"files": [
"lib/"
]
}