-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 844 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
{
"name": "coffeelint-no-mocha-only",
"version": "1.0.0",
"description": "This CoffeeLint plugin verifies there are no describe.only's or it.only's left in mocha tests",
"main": "index.js",
"scripts": {
"test": "mocha --compilers coffee:coffee-script/register test/RuleProcessor.test.coffee"
},
"author": "rkstedman",
"license": "MIT",
"devDependencies": {
"should": "^8.0.2"
},
"dependencies": {
"coffee-script": "^1.10.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rkstedman/coffeelint-no-mocha-only.git"
},
"keywords": [
"coffeelint",
"mocha"
],
"bugs": {
"url": "https://github.com/rkstedman/coffeelint-no-mocha-only/issues"
},
"homepage": "https://github.com/rkstedman/coffeelint-no-mocha-only#readme"
}