forked from makepanic/broccoli-eslint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 902 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
{
"name": "broccoli-eslint",
"version": "0.1.0",
"description": "broccoli filter that runs eslint",
"main": "lib/index.js",
"scripts": {
"test": "broccoli build temp > broccoli-build.out && node node_modules/mocha/bin/mocha test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/makepanic/broccoli-eslint.git"
},
"keywords": [
"eslint",
"lint",
"broccoli",
"validate",
"jshint",
"jslint",
"esprima",
"broccoli-plugin"
],
"author": "Christian",
"license": "MIT",
"bugs": {
"url": "https://github.com/makepanic/broccoli-eslint/issues"
},
"homepage": "https://github.com/makepanic/broccoli-eslint",
"dependencies": {
"broccoli-filter": "^0.1.6",
"eslint": "^0.4.5"
},
"devDependencies": {
"mocha": "*",
"rimraf": "~2.2.6",
"broccoli": "^0.7.2",
"broccoli-merge-trees": "^0.1.3"
}
}