babel/package.json
greenkeeper[bot] 9222562b82 Update cross-env to the latest version 🚀 (#443)
* chore(package): update cross-env to version 4.0.0

https://greenkeeper.io/

* Update yarn.lock
2017-04-03 22:23:44 +02:00

81 lines
2.2 KiB
JSON

{
"name": "babylon",
"version": "7.0.0-beta.7",
"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": [
"bin",
"lib"
],
"engines": {
"node": ">=4.2.0"
},
"devDependencies": {
"ava": "^0.18.0",
"babel-cli": "^7.0.0-alpha.6",
"babel-eslint": "^7.0.0",
"babel-helper-fixtures": "^7.0.0-alpha.3",
"babel-plugin-external-helpers": "^7.0.0-alpha.3",
"babel-plugin-istanbul": "^4.0.0",
"babel-plugin-transform-flow-strip-types": "^7.0.0-alpha.3",
"babel-preset-es2015": "^7.0.0-alpha.3",
"babel-preset-stage-0": "^7.0.0-alpha.3",
"chalk": "^1.1.3",
"cross-env": "^4.0.0",
"eslint": "^3.7.1",
"eslint-config-babel": "^6.0.0",
"eslint-plugin-flowtype": "^2.20.0",
"flow-bin": "^0.42.0",
"nyc": "^10.0.0",
"rimraf": "^2.5.4",
"rollup": "^0.41.0",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-watch": "^3.2.2",
"unicode-9.0.0": "~0.7.0"
},
"bin": {
"babylon": "./bin/babylon.js"
},
"scripts": {
"build": "yarn run clean && rollup -c",
"changelog": "git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'",
"clean": "rimraf lib",
"flow": "flow",
"lint": "eslint src bin",
"prepublish": "cross-env BABEL_ENV=production yarn run build",
"preversion": "yarn run test && npm run changelog",
"test": "yarn run lint && yarn run flow && yarn run build -- -m && yarn run test-only",
"test-only": "ava",
"test-coverage": "cross-env BABEL_ENV=test yarn run build && nyc --reporter=json --reporter=text yarn run test-only",
"watch": "yarn run clean && rollup -c --watch"
},
"nyc": {
"include": [
"src/**/*.js",
"bin/**/*.js"
],
"sourceMap": false,
"instrument": false
},
"ava": {
"files": [
"test/*.js"
],
"source": [
"src/**/*.js",
"bin/**/*.js"
]
}
}