-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.35 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
{
"name": "genetic-algorithm-framework",
"version": "1.0.0",
"description": "Small framework for genetic algorithms",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"docs": "typedoc",
"test": "jest",
"build": "tsc -p tsconfig.build.json && tsc-alias",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint --ext .ts src",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"publish": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RolandoAndrade/genetic-algorithm-framework.git"
},
"keywords": [
"genetic-algorithm",
"framework",
"nodejs"
],
"homepage": "https://rolandoandrade.github.io/genetic-algorithm-framework",
"author": "Rolando Andrade",
"license": "MIT",
"devDependencies": {
"@eslint/create-config": "^0.3.0",
"@types/jest": "^28.1.4",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^28.1.2",
"prettier": "^2.7.1",
"ts-jest": "^28.0.5",
"tsc-alias": "^1.6.11",
"typedoc": "^0.23.6",
"typescript": "^4.7.4"
},
"files": [
"dist/**/*"
]
}