flow2schema/package.json

45 lines
1.2 KiB
JSON
Raw Normal View History

2017-10-29 01:55:39 +03:00
{
2017-11-06 12:46:46 +03:00
"name": "flow2avro",
"version": "0.2.0",
"description": "Generate avro schemas for flowtype definitions",
"author": "Paul Loyd <pavelko95@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/loyd/flow2avro.git"
},
"bugs": {
"url": "https://github.com/loyd/flow2avro/issues"
},
"keywords": [
"flow",
"flowtype",
"avro",
"avsc"
],
"main": "lib/index.js",
"bin": {
2017-11-16 15:17:15 +03:00
"flow2avro": "./bin/flow2avro"
2017-11-06 12:46:46 +03:00
},
"dependencies": {
2017-11-16 15:17:15 +03:00
"babylon": "^7.0.0-beta.32",
2017-11-06 12:46:46 +03:00
"json-stringify-pretty-compact": "^1.0.4",
"optimist": "^0.6.1",
"resolve": "^1.5.0"
},
"devDependencies": {
2017-11-16 15:17:15 +03:00
"@babel/cli": "^7.0.0-beta.32",
"@babel/core": "^7.0.0-beta.32",
"@babel/preset-env": "^7.0.0-beta.32",
"@babel/register": "^7.0.0-beta.32",
2017-11-06 12:46:46 +03:00
"jasmine": "^2.8.0",
"mocha": "^4.0.1",
"nyc": "^11.3.0"
},
"scripts": {
2017-11-16 15:17:15 +03:00
"prepare": "npm run build",
"build": "babel src/ -d lib/",
2017-11-16 15:21:27 +03:00
"test": "nyc mocha -r @babel/register -R list tests/run.js"
2017-11-06 12:46:46 +03:00
}
2017-10-29 01:55:39 +03:00
}