-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.63 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
{
"name": "flocking-boids",
"version": "0.2.4",
"description": "Simulation of the group of items (boids) with flocking behavior, that can be rendered on the provided canvas",
"main": "dist/main.js",
"scripts": {
"build": "rimraf dist && webpack --config ./webpack.config.js",
"build:demo": "rimraf demo_dist && webpack --config ./webpack.config.demo.js",
"start": "webpack serve --config ./webpack.config.demo.js",
"publish:demo": "gh-pages -d demo_dist",
"release": "npm run build && npm run build:demo && npm version minor && npm publish && npm run publish:demo",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gleb-lobastov/flocking-boids.git"
},
"files": [
"dist"
],
"keywords": [
"flocking",
"boids",
"canvas",
"animation",
"birds",
"minnows",
"visualization",
"reynolds"
],
"author": "Gleb Lobastov",
"license": "MIT",
"bugs": {
"url": "https://github.com/gleb-lobastov/flocking-boids/issues"
},
"homepage": "https://github.com/gleb-lobastov/flocking-boids#readme",
"devDependencies": {
"@babel/core": "^7.12.0",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.12.0",
"@babel/preset-react": "^7.12.1",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"babel-loader": "^8.1.0",
"gh-pages": "^3.1.0",
"html-webpack-plugin": "^4.5.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"rimraf": "^3.0.2",
"webpack": "^5.1.0",
"webpack-cli": "^4.0.0",
"webpack-dev-server": "^3.11.0"
}
}