-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.07 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
{
"name": "eventlint",
"version": "0.0.9",
"description": "Checks to see that events which are listened for are emitted.",
"homepage": "https://github.com/mdcone/eventlint",
"author": {
"name": "Michael Dylan Cone",
"email": "[email protected]",
"url": "http://www.dotapply.net"
},
"repository": "mdcone/eventlint",
"license": "MIT",
"files": [
"lib",
"cli.js"
],
"keywords": [
"eventlint",
"events",
"eventemitter",
"on",
"fire",
"emit",
"lint"
],
"dependencies": {
"meow": "^2.0.0"
},
"devDependencies": {
"chai": "^1.10.0",
"chai-things": "^0.2.0",
"grunt-cli": "^0.1.13",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-nodeunit": "^0.4.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha-cli": "^1.11.0",
"grunt-release": "^0.10.0",
"grunt-release-it": "^0.2.1",
"jshint-stylish": "^1.0.0",
"load-grunt-tasks": "^1.0.0",
"release-it": "0.0.13",
"time-grunt": "^1.0.0"
},
"scripts": {
"test": "grunt"
},
"bin": {
"eventlint": "cli.js"
}
}