babel/package.json
Sebastian McKenzie 43e01e40f1 upgrade ava
2016-06-22 13:17:31 +01:00

35 lines
945 B
JSON

{
"name": "babylon",
"version": "6.8.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",
"dependencies": {
"babel-runtime": "^6.0.0"
},
"devDependencies": {
"ava": "^0.15.2",
"babel-cli": "^6.0.0",
"babel-helper-fixtures": "^6.6.5",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-preset-react": "^6.0.0",
"babel-preset-stage-0": "^6.5.0",
"kcheck": "^2.0.1",
"lodash": "^4.6.1"
},
"bin": {
"babylon": "./bin/babylon.js"
},
"scripts": {
"test": "npm run build && npm run lint && ava test/",
"lint": "kcheck",
"build": "babel src --out-dir lib",
"watch": "babel src --out-dir lib --watch"
}
}