UNPKG

1.54 kBJSONView Raw
1{
2 "name": "babel-eslint",
3 "version": "8.0.2",
4 "description": "Custom parser for ESLint",
5 "main": "index.js",
6 "files": [
7 "index.js",
8 "babylon-to-espree"
9 ],
10 "repository": {
11 "type": "git",
12 "url": "https://github.com/babel/babel-eslint.git"
13 },
14 "dependencies": {
15 "@babel/code-frame": "^7.0.0-beta.31",
16 "@babel/traverse": "^7.0.0-beta.31",
17 "@babel/types": "^7.0.0-beta.31",
18 "babylon": "^7.0.0-beta.31"
19 },
20 "scripts": {
21 "test": "npm run lint && npm run test-only",
22 "test-only": "mocha",
23 "lint": "eslint index.js babylon-to-espree test",
24 "fix": "eslint index.js babylon-to-espree test --fix",
25 "precommit": "lint-staged",
26 "preversion": "npm test",
27 "changelog": "git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'"
28 },
29 "author": "Sebastian McKenzie <sebmck@gmail.com>",
30 "license": "MIT",
31 "engines": {
32 "node": ">=4"
33 },
34 "bugs": {
35 "url": "https://github.com/babel/babel-eslint/issues"
36 },
37 "homepage": "https://github.com/babel/babel-eslint",
38 "devDependencies": {
39 "babel-eslint": "^8.0.0",
40 "dedent": "^0.7.0",
41 "eslint": "^4.1.0",
42 "eslint-config-babel": "^7.0.1",
43 "eslint-plugin-flowtype": "^2.30.3",
44 "eslint-plugin-prettier": "^2.1.2",
45 "espree": "^3.4.0",
46 "husky": "^0.14.0",
47 "lint-staged": "^4.0.0",
48 "mocha": "^4.0.0",
49 "prettier": "^1.4.4"
50 },
51 "lint-staged": {
52 "*.js": [
53 "eslint --format=codeframe --fix",
54 "git add"
55 ]
56 }
57}