-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.01 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
{
"name": "fractal-js",
"version": "1.0.1",
"description": "A Fractal Rendering Library",
"main": "index.js",
"scripts": {
"build-static": "browserify index.js -o fractal.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Sparkx120/fractal-js.git"
},
"keywords": [
"fractal",
"mandelbrot",
"julia"
],
"author": "SparkX120 (James Wake)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Sparkx120/fractal-js/issues"
},
"homepage": "https://github.com/Sparkx120/fractal-js#readme",
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
},
"dependencies": {
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^8.0.0",
"browserify": "^14.5.0",
"canvas-2d-framework": "file:canvas-2d-framework",
"synthetic-webworker": "file:synthetic-webworker"
}
}