flow2schema/package.json

58 lines
1.5 KiB
JSON
Raw Permalink Normal View History

2017-10-29 01:55:39 +03:00
{
2017-11-16 17:34:27 +03:00
"name": "flow2schema",
2018-01-13 20:57:00 +03:00
"version": "0.3.1",
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
],
2017-12-17 13:13:51 +03:00
"main": "./lib/index.js",
2017-11-06 12:46:46 +03:00
"bin": {
2017-11-16 17:34:27 +03:00
"flow2schema": "./bin/flow2schema"
2017-11-06 12:46:46 +03:00
},
2017-12-17 13:13:51 +03:00
"files": [
"lib/",
"bin/"
],
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",
2017-11-28 16:35:28 +03:00
"resolve": "^1.5.0",
2017-11-30 14:27:05 +03:00
"wu": "^2.1.0",
2017-12-17 13:13:27 +03:00
"yaml-js": "^0.2.0",
"yargs": "^10.0.3"
2017-11-06 12:46:46 +03:00
},
"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",
"ajv": "^5.5.1",
2018-07-24 23:13:34 +03:00
"flow-bin": "^0.77.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",
2017-11-18 13:48:16 +03:00
"test": "npm run flow && npm run mocha",
2017-11-16 15:17:15 +03:00
"build": "babel src/ -d lib/",
2017-11-18 13:48:16 +03:00
"mocha": "nyc mocha -r @babel/register -R list tests/run.js",
2017-11-18 12:38:34 +03:00
"flow": "flow"
2017-11-06 12:46:46 +03:00
}
2017-10-29 01:55:39 +03:00
}