-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.47 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"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": "[email protected]",
"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": "[email protected]"
},
"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"
}
}