-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.1 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
63
64
65
66
67
68
69
70
71
{
"name": "mandelbrot",
"version": "1.0.0",
"description": "Mandelbrot fractal rendering with WebGL",
"main": "app/index.js",
"scripts": {
"build": "webpack --mode production",
"start": "webpack-dev-server --mode development",
"lint": "eslint --cache --ext .vue,.js src",
"lint:fix": "eslint --cache --fix --ext .vue,.js src",
"prepare": "git clone https://github.com/erenard/mandelbrot.git --branch gh-pages dist",
"deploy": "cd dist && git add --all && git commit -m \"Release at $(date)\" && git push",
"bundle-analyzer": "webpack --mode production --profile --bundle-analyzer"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erenard/mandelbrot.git"
},
"keywords": [
"mandelbrot",
"webgl"
],
"author": "Eric Renard",
"license": "ISC",
"bugs": {
"url": "https://github.com/erenard/mandelbrot/issues"
},
"homepage": "https://github.com/erenard/mandelbrot#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-loader": "^8.0.6",
"css-loader": "^3.1.0",
"eslint": "^6.1.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsdoc": "^15.6.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.3",
"file-loader": "^4.1.0",
"html-webpack-plugin": "^3.0.6",
"json-loader": "^0.5.4",
"raw-loader": "^3.1.0",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.3",
"vue-loader": "^15.7.1",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.36.1",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "^3.3.6",
"webpack-dev-middleware": "^3.7.0",
"webpack-dev-server": "^3.11.0",
"webpack-node-externals": "^1"
},
"dependencies": {
"normalize-css": "^2.3.1",
"pixi-viewport": "^3.23.2",
"pixi.js": "^5.1.0",
"tiny-debounce": "^0.1.1",
"vue": "^2.6.10"
},
"nyc": {
"include": [
"app/**/*.js"
],
"instrument": false,
"sourceMap": false
}
}