summaryrefslogtreecommitdiff
path: root/node_modules/babylon/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/babylon/package.json')
-rw-r--r--node_modules/babylon/package.json51
1 files changed, 36 insertions, 15 deletions
diff --git a/node_modules/babylon/package.json b/node_modules/babylon/package.json
index 79eebc2d6..b068ce7ae 100644
--- a/node_modules/babylon/package.json
+++ b/node_modules/babylon/package.json
@@ -1,10 +1,16 @@
{
"name": "babylon",
- "version": "6.13.1",
+ "version": "6.16.1",
"description": "A JavaScript parser",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",
"license": "MIT",
+ "keywords": [
+ "babel",
+ "javascript",
+ "parser",
+ "babylon"
+ ],
"repository": "https://github.com/babel/babylon",
"main": "lib/index.js",
"files": [
@@ -12,25 +18,25 @@
"lib"
],
"devDependencies": {
- "ava": "^0.16.0",
+ "ava": "^0.17.0",
"babel-cli": "^6.14.0",
"babel-eslint": "^7.0.0",
"babel-helper-fixtures": "^6.9.0",
- "babel-plugin-istanbul": "^2.0.1",
+ "babel-plugin-external-helpers": "^6.18.0",
+ "babel-plugin-istanbul": "^3.0.0",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-0": "^6.5.0",
+ "chalk": "^1.1.3",
"codecov": "^1.0.1",
- "cross-env": "^2.0.1",
+ "cross-env": "^2.0.0",
"eslint": "^3.7.1",
- "eslint-config-babel": "^2.0.1",
- "eslint-plugin-babel": "^3.3.0",
+ "eslint-config-babel": "^6.0.0",
"eslint-plugin-flowtype": "^2.20.0",
- "flow-bin": "^0.33.0",
- "lodash": "^4.15.0",
- "nyc": "^8.1.0",
+ "flow-bin": "^0.38.0",
+ "nyc": "^10.0.0",
"rimraf": "^2.5.4",
- "rollup": "^0.36.3",
+ "rollup": "^0.41.0",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-node-resolve": "^2.0.0",
"unicode-9.0.0": "~0.7.0"
@@ -39,17 +45,18 @@
"babylon": "./bin/babylon.js"
},
"scripts": {
- "build": "rollup -c",
+ "build": "npm run clean && rollup -c",
"coverage": "nyc report --reporter=json && codecov -f coverage/coverage-final.json",
"lint": "eslint src bin",
"clean": "rimraf lib",
"flow": "flow",
- "prepublish": "npm run clean && cross-env BABEL_ENV=production npm run build",
+ "prepublish": "cross-env BABEL_ENV=production npm run build",
"preversion": "npm run test && npm run changelog",
- "test": "npm run lint && npm run flow && npm run build && npm run test-only",
- "test-only": "ava test",
+ "test": "npm run lint && npm run flow && npm run build -- -m && npm run test-only",
+ "test-only": "ava",
"test-ci": "nyc npm run test-only",
- "changelog": "git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'"
+ "changelog": "git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'",
+ "watch": "npm run clean && cross-env BABEL_ENV=watch babel src --out-dir lib --watch"
},
"nyc": {
"include": [
@@ -58,5 +65,19 @@
],
"sourceMap": false,
"instrument": false
+ },
+ "ava": {
+ "files": [
+ "test/*.js"
+ ],
+ "source": [
+ "src/**/*.js",
+ "bin/**/*.js"
+ ]
+ },
+ "greenkeeper": {
+ "ignore": [
+ "cross-env"
+ ]
}
}