forked from ember-cli/broccoli-lint-eslint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.38 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
{
"name": "broccoli-lint-eslint",
"version": "2.0.0",
"description": "broccoli filter that runs eslint",
"main": "build/index.js",
"scripts": {
"prebabelify": "rimraf build",
"babelify": "babel lib --out-dir build",
"prepublish": "npm run babelify",
"lint": "eslint .",
"babelify-tests": "babel test --ignore fixture --out-dir build/test",
"test": "npm run babelify && npm run babelify-tests && npm run lint && node_modules/mocha/bin/mocha build/test/test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/jonathanKingston/broccoli-lint-eslint.git"
},
"keywords": [
"eslint",
"lint",
"broccoli",
"validate",
"jshint",
"jslint",
"esprima",
"broccoli-plugin"
],
"files": [
"lib",
"tests",
"conf"
],
"author": "Jonathan Kingston",
"license": "MIT",
"bugs": {
"url": "https://github.com/jonathanKingston/broccoli-lint-eslint/issues"
},
"homepage": "https://github.com/jonathanKingston/broccoli-lint-eslint",
"dependencies": {
"broccoli-filter": "^1.2.3",
"eslint": "^2.3.0"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"broccoli": "^0.16.9",
"broccoli-cli": "^1.0.0",
"broccoli-merge-trees": "^1.1.1",
"chai": "^3.5.0",
"eslint-config-nightmare-mode": "^2.3.0",
"mocha": "^2.2.4",
"rimraf": "^2.5.1"
}
}