babel/package.json
2016-09-22 16:01:02 -04:00

52 lines
1.4 KiB
JSON

{
"name": "babylon",
"version": "6.11.1",
"description": "A JavaScript parser",
"author": "Sebastian McKenzie <sebmck@gmail.com>",
"homepage": "https://babeljs.io/",
"license": "MIT",
"repository": "https://github.com/babel/babylon",
"main": "lib/index.js",
"files": [
"bin",
"lib"
],
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.14.0",
"babel-helper-fixtures": "^6.9.0",
"babel-plugin-istanbul": "^2.0.1",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-0": "^6.5.0",
"codecov": "^1.0.1",
"cross-env": "^2.0.1",
"kcheck": "^2.0.3",
"lodash": "^4.15.0",
"nyc": "^8.1.0",
"unicode-9.0.0": "~0.7.0"
},
"bin": {
"babylon": "./bin/babylon.js"
},
"scripts": {
"build": "babel src --out-dir lib",
"coverage": "nyc report --reporter=json && codecov -f coverage/coverage-final.json",
"lint": "kcheck",
"prepublish": "cross-env BABEL_ENV=production npm run build",
"preversion": "npm run test",
"test": "npm run build && npm run lint && npm run test-only",
"test-only": "ava test",
"test_cov": "cross-env BABEL_ENV=test npm run build && npm run lint && nyc ava test",
"watch": "babel src --out-dir lib --watch"
},
"nyc": {
"include": [
"src/**/*.js",
"bin/**/*.js"
],
"sourceMap": false,
"instrument": false
}
}