cli-mandelbrot
Version:
A command line viewer of the Mandelbrot set
63 lines (62 loc) • 1.5 kB
JSON
{
"name": "cli-mandelbrot",
"version": "1.0.4",
"description": "A command line viewer of the Mandelbrot set",
"keywords": [
"mandelbrot",
"fractal",
"ascii",
"math",
"cli"
],
"homepage": "https://github.com/danyshaanan/cli-mandelbrot",
"author": {
"name": "Dany Shaanan",
"email": "danyshaanan@gmail.com",
"url": "http://danyshaanan.com/"
},
"contributors": [],
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/danyshaanan/cli-mandelbrot/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "git://github.com/danyshaanan/cli-mandelbrot.git"
},
"bugs": {
"url": "https://github.com/danyshaanan/cli-mandelbrot",
"email": "danyshaanan@gmail.com"
},
"preferGlobal": true,
"engines": {
"node": ">=6.0.0"
},
"engine-strict": true,
"scripts": {
"perf": "node src/test/performanceTest.js",
"lint": "eslint src/",
"ava": "ava src/test/**/*.spec.js",
"watch": "npm run ava -- --watch ",
"test": "npm run lint && npm run ava",
"start": "node ./src/main/cli-mandelbrot.js"
},
"bin": {
"cli-mandelbrot": "./src/main/cli-mandelbrot.js"
},
"dependencies": {
"cli-color": "0.3.2",
"lodash": "4.17.11"
},
"devDependencies": {
"ava": "0.15.2",
"babel-eslint": "6.0.2",
"eslint": "2.8.0",
"eslint-config-standard": "5.2.0",
"eslint-plugin-promise": "1.1.0",
"eslint-plugin-standard": "1.3.2"
}
}