flow2schema/package.json

50 lines
1.3 KiB
JSON
Raw Normal View History

2017-10-29 01:55:39 +03:00
{
2017-11-16 17:34:27 +03:00
"name": "flow2schema",
2017-11-06 12:46:46 +03:00
"version": "0.2.0",
2017-11-16 17:34:27 +03:00
"description": "Generate schemas for flowtype definitions",
2017-11-06 12:46:46 +03:00
"author": "Paul Loyd <pavelko95@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
2017-11-16 17:34:27 +03:00
"url": "https://github.com/loyd/flow2schema.git"
2017-11-06 12:46:46 +03:00
},
"bugs": {
2017-11-16 17:34:27 +03:00
"url": "https://github.com/loyd/flow2schema/issues"
2017-11-06 12:46:46 +03:00
},
"keywords": [
"flow",
"flowtype",
"avro",
2017-11-16 17:34:27 +03:00
"avsc",
"json-schema"
2017-11-06 12:46:46 +03:00
],
"main": "lib/index.js",
"bin": {
2017-11-16 17:34:27 +03:00
"flow2schema": "./bin/flow2schema"
2017-11-06 12:46:46 +03:00
},
"dependencies": {
2017-11-18 12:38:34 +03:00
"@babel/types": "^7.0.0-beta.32",
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",
2017-11-18 12:38:34 +03:00
"@babel/preset-flow": "^7.0.0-beta.32",
2017-11-16 15:17:15 +03:00
"@babel/register": "^7.0.0-beta.32",
2017-11-18 12:38:34 +03:00
"flow-bin": "^0.59.0",
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-18 12:38:34 +03:00
"test": "flow && nyc mocha -r @babel/register -R list tests/run.js",
"flow": "flow"
2017-11-06 12:46:46 +03:00
}
2017-10-29 01:55:39 +03:00
}