|
1 | 1 | { |
2 | 2 | "name": "eslint-plugin-react", |
3 | 3 | "version": "1.1.0", |
| 4 | + "author": "Yannick Croissant <yannick.croissant+npm@gmail.com>", |
4 | 5 | "description": "React specific linting rules for ESLint", |
5 | 6 | "main": "index.js", |
6 | 7 | "scripts": { |
7 | | - "test": "npm run lint && npm run unit-test --coverage && npm run check-coverage", |
| 8 | + "test": "npm run lint && npm run unit-test", |
8 | 9 | "lint": "eslint ./", |
9 | | - "unit-test": "istanbul test --dir build/coverage node_modules/mocha/bin/_mocha tests/**/*.js -- --recursive --reporter dot", |
10 | | - "check-coverage": "istanbul check-coverage --statement 100 --branch 100 --function 100 --lines 100", |
11 | | - "report-coverage-html": "istanbul report --dir build/coverage html" |
| 10 | + "unit-test": "istanbul cover --dir reports/coverage _mocha tests/**/*.js -- --reporter dot", |
| 11 | + "coveralls": "cat ./reports/coverage/lcov.info | coveralls" |
12 | 12 | }, |
| 13 | + "files": [ |
| 14 | + "LICENSE", |
| 15 | + "README.md", |
| 16 | + "index.js", |
| 17 | + "lib" |
| 18 | + ], |
13 | 19 | "repository": { |
14 | 20 | "type": "git", |
15 | 21 | "url": "https://github.com/yannickcr/eslint-plugin-react" |
16 | 22 | }, |
| 23 | + "homepage": "https://github.com/yannickcr/eslint-plugin-react", |
| 24 | + "bugs": "https://github.com/yannickcr/eslint-plugin-react/issues", |
| 25 | + "devDependencies": { |
| 26 | + "coveralls": "2.11.2", |
| 27 | + "eslint": "0.11.0-alpha.0", |
| 28 | + "eslint-tester": "0.3.0", |
| 29 | + "istanbul": "0.3.0", |
| 30 | + "mocha": "1.21.4" |
| 31 | + }, |
17 | 32 | "keywords": [ |
18 | 33 | "eslint-plugin", |
19 | 34 | "eslintplugin", |
20 | 35 | "eslint", |
21 | 36 | "react" |
22 | 37 | ], |
23 | | - "devDependencies": { |
24 | | - "eslint": "^0.11.0-alpha.0", |
25 | | - "eslint-tester": "^0.3.0", |
26 | | - "istanbul": "0.3.0", |
27 | | - "mocha": "1.21.4" |
28 | | - }, |
29 | | - "author": "Yannick Croissant (https://github.com/yannickcr)", |
30 | 38 | "licenses": [ |
31 | 39 | { |
32 | 40 | "type": "MIT", |
33 | 41 | "url": "https://raw.github.com/yannickcr/eslint-plugin-react/master/LICENSE" |
34 | 42 | } |
35 | | - ], |
36 | | - "bugs": { |
37 | | - "url": "https://github.com/yannickcr/eslint-plugin-react/issues" |
38 | | - }, |
39 | | - "homepage": "https://github.com/yannickcr/eslint-plugin-react" |
| 43 | + ] |
40 | 44 | } |
0 commit comments