-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 942 Bytes
/
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
{
"name": "evolution",
"version": "1.0.0",
"description": "evolutionary algorithms",
"main": "index.js",
"scripts": {
"build": "gulp build",
"dev": "gulp dev",
"serve": "gulp serve",
"setup": "npm i && npm prune && npm outdated --depth=0"
},
"repository": {
"type": "git",
"url": "https://github.com/seriousManual/evolution.git"
},
"keywords": [
"algorithms",
"evolutionary"
],
"author": "Manuel Ernst <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/seriousManual/evolution/issues"
},
"homepage": "https://github.com/seriousManual/evolution",
"devDependencies": {
"express": "^4.16.4",
"gulp": "^3.9.1",
"gulp-bower": "0.0.14",
"gulp-browserify": "^0.5.0",
"gulp-concat": "^2.6.0",
"gulp-less": "^4.0.1",
"gulp-util": "^3.0.6",
"rimraf": "^2.6.3",
"run-sequence": "^2.2.1",
"webworkify": "^1.0.2"
}
}