forked from mysticatea/eslint-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.6 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
55
56
{
"name": "eslint-plugin-mysticatea",
"version": "3.0.2",
"description": "ESLint rules for me.",
"engines": {
"node": "^0.10.0 || ^0.12.0 || >=4.0.0"
},
"main": "index.js",
"files": [
"lib"
],
"scripts": {
"preversion": "run-s test build",
"postversion": "git push && git push --tags",
"clean": "rimraf coverage index.js",
"lint": "eslint lib tests scripts",
"prebuild": "npm run clean",
"build": "node scripts/generate-index.js",
"pretest": "npm run lint",
"test": "istanbul cover node_modules/mocha/bin/_mocha -- tests/lib/**/*.js --reporter progress",
"watch": "run-p watch:*",
"watch:test": "chokidar \"{lib,scripts,tests}/**/*.js\" --initial --command \"npm test\"",
"watch:coverage": "wait-on coverage/lcov-report/index.html && opener coverage/lcov-report/index.html",
"coveralls": "cat coverage/lcov.info | coveralls"
},
"peerDependencies": {
"eslint": ">=2.0.0"
},
"dependencies": {},
"devDependencies": {
"chokidar-cli": "^1.2.0",
"coveralls": "^2.11.9",
"eslint": "^2.11.1",
"eslint-config-mysticatea": "^4.0.0",
"istanbul": "^0.4.3",
"mocha": "^2.5.3",
"npm-run-all": "^2.1.1",
"opener": "^1.4.1",
"rimraf": "^2.5.2",
"wait-on": "^1.5.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mysticatea/eslint-plugin.git"
},
"keywords": [
"eslint",
"eslintplugin"
],
"author": "Toru Nagashima",
"license": "MIT",
"bugs": {
"url": "https://github.com/mysticatea/eslint-plugin/issues"
},
"homepage": "https://github.com/mysticatea/eslint-plugin#readme"
}