-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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": "genome.js",
"version": "1.1.10",
"description": "Genetics algorithms done right",
"main": "dist/genome.min.js",
"scripts": {
"tsc": "tsc",
"build": "cross-env NODE_ENV=production webpack --config webpack.config.js",
"dev": "ts-node --transpile-only ./src/example.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Treast/genome.js.git"
},
"keywords": [
"genome.js",
"genome",
"genetic algorithm",
"genetic",
"machine learning",
"artificial intelligence",
"ga",
"javascript genetic"
],
"author": "Vincent Riva <vincent.riva@outlook.fr>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Treast/genome.js/issues"
},
"homepage": "https://github.com/Treast/genome.js#readme",
"devDependencies": {
"babel-loader": "^8.0.5",
"cross-env": "^5.2.0",
"ts-loader": "^5.3.3",
"ts-node": "^8.0.3",
"ts-node-dev": "^1.0.0-pre.32",
"tslint": "^5.14.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-loader": "^3.5.4",
"typescript": "^3.3.4000",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
}
}