-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.11 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.11 KB
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
{
"name": "@coool/genetics",
"version": "1.1.1",
"scripts": {
"build": "npm run clean && npm run build:compile && npm run build:copyFiles",
"clean": "rm -rf dist",
"build:copyFiles": "cp ./{LICENSE,README.md,package.json,package-lock.json} ./dist/",
"build:compile": "npx tsc",
"watch": "npx tsc -w",
"release": "cd ./dist && npm publish --access=public && cd .."
},
"dependencies": {
"lodash": "^4.17.21",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/lodash": "^4.14.192",
"@types/uuid": "^9.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hacklone/cool-genetics.git"
},
"keywords": [
"genetic algorithm",
"genetic",
"algorithm",
"typescript",
"node",
"nodejs"
],
"author": "Hacklone <toakak@gmail.com>",
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/Hacklone/cool-genetics/raw/master/LICENSE"
}
],
"bugs": {
"url": "https://github.com/Hacklone/cool-genetics/issues"
},
"homepage": "https://github.com/Hacklone/cool-genetics/blob/main/README.md"
}