babel/package.json
2016-06-22 14:35:19 +02:00

36 lines
976 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",
"unicode-9.0.0": "~0.7.0"
},
"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"
}
}