-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
41 lines (41 loc) · 967 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
38
39
40
41
{
"name": "eslint-plugin-no-exclusive-tests",
"version": "1.0.0-rc.2",
"description": "ESLint rule to disallow use of exclusive tests",
"main": "index.js",
"peerDependencies": {
"eslint": ">=0.8.0"
},
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"test": "mocha",
"watch": "mocha --watch"
},
"keywords": [
"eslint",
"eslint-plugin",
"eslintplugin",
"rule",
"jasmine",
"ddescribe",
"iit"
],
"author": "Tom Vincent <npm@tlvince.com> (http://tlvince.com/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tlvince/eslint-plugin-no-exclusive-tests.git"
},
"bugs": {
"url": "https://github.com/tlvince/eslint-plugin-no-exclusive-tests/issues"
},
"homepage": "https://github.com/tlvince/eslint-plugin-no-exclusive-tests",
"devDependencies": {
"eslint": "^0.12.0",
"eslint-tester": "^0.5.0",
"mocha": "^2.1.0"
}
}