Permalink
Cannot retrieve contributors at this time
50 lines (50 sloc)
1.43 KB
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/eslint-plugin-filenames/package.json
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "eslint-plugin-filenames", | |
"version": "1.3.2", | |
"description": "Eslint rule for consistent filenames.", | |
"main": "index.js", | |
"scripts": { | |
"test": "npm run lint && npm run unit-test --coverage && npm run check-coverage", | |
"lint": "eslint .", | |
"unit-test": "istanbul test --dir build/coverage _mocha test -- --recursive --reporter dot", | |
"check-coverage": "istanbul check-coverage --statement 100 --branch 100 --function 100 --lines 100", | |
"report-coverage-html": "istanbul report --dir build/coverage html", | |
"coveralls": "cat ./build/coverage/lcov.info | coveralls" | |
}, | |
"dependencies": { | |
"lodash.camelcase": "4.3.0", | |
"lodash.kebabcase": "4.1.1", | |
"lodash.snakecase": "4.1.1", | |
"lodash.upperfirst": "4.3.1" | |
}, | |
"devDependencies": { | |
"chai": "3.5.0", | |
"coveralls": "2.13.0", | |
"eslint": "^2.0.0", | |
"eslint-plugin-filenames": "^1.0.0", | |
"istanbul": "0.4.5", | |
"mocha": "3.2.0", | |
"sinon": "2.1.0" | |
}, | |
"peerDependencies": { | |
"eslint": "*" | |
}, | |
"repository": { | |
"type": "git", | |
"url": "git://github.com/selaux/eslint-plugin-filenames.git" | |
}, | |
"author": "Stefan Lau <github@stefanlau.com>", | |
"license": "MIT", | |
"bugs": { | |
"url": "https://github.com/selaux/eslint-plugin-filenames/issues" | |
}, | |
"homepage": "https://github.com/selaux/eslint-plugin-filenames", | |
"keywords": [ | |
"eslint", | |
"eslintplugin", | |
"eslint-plugin", | |
"file", | |
"filename", | |
"path" | |
] | |
} |