-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "charles.darwin",
"main": "lib/js/Darwin.js",
"module": "lib/js/Darwin.js",
"types": "lib/types/Darwin.d.ts",
"version": "1.3.1",
"description": "Flexible Genetic Algorithm Library",
"scripts": {
"start": "webpack serve --config demos.config.js --mode development",
"lib": "tsc",
"umd": "webpack --mode production",
"demos": "webpack --config demos.config.js --mode production",
"prepublishOnly": "rm -rf /lib && npm run lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nathsou/Darwin.git"
},
"keywords": [
"Genetic",
"Algorithm",
"TypeScript",
"Darwin",
"Evolution"
],
"devDependencies": {
"html-webpack-plugin": "^5.3.1",
"ts-loader": "^8.1.0",
"typescript": "^4.2.4",
"webpack": "^5.31.2",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
},
"author": "Nathan Soufflet",
"license": "MIT",
"bugs": {
"url": "https://github.com/nathsou/Darwin/issues"
},
"homepage": "https://github.com/nathsou/Darwin#readme"
}