flow2schema/package.json

38 lines
745 B
JSON
Raw Normal View History

2017-10-29 01:55:39 +03:00
{
"name": "flow2avro",
"version": "0.1.0",
2017-11-05 02:40:46 +03:00
"description": "Generate avro schemas for flowtype definitions",
2017-10-29 01:55:39 +03:00
"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": {
"babylon": "./bin/babylon.js"
},
"dependencies": {
"babylon": "^6.18.0",
2017-11-04 22:13:08 +03:00
"optimist": "^0.6.1",
"resolve": "^1.5.0"
2017-10-29 01:55:39 +03:00
},
2017-10-29 15:42:46 +03:00
"devDependencies": {
2017-11-05 12:28:10 +03:00
"jasmine": "^2.8.0",
"mocha": "^4.0.1",
2017-11-05 01:13:56 +03:00
"nyc": "^11.3.0"
2017-10-29 15:42:46 +03:00
},
2017-10-29 01:55:39 +03:00
"scripts": {
2017-11-05 14:36:31 +03:00
"test": "nyc mocha tests/do"
2017-10-29 01:55:39 +03:00
}
}