forked from subprotocol/genetic-js
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 974 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
39
{
"name": "@glavin001/genetic-js",
"version": "0.2.1",
"description": "Advanced genetic and evolutionary algorithm library",
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"scripts": {
"build": "tsc",
"jest": "jest",
"lint": "tslint '{src,test,script}/**/*.ts'",
"test": "npm run build && npm run jest",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/Glavin001/genetic-js"
},
"bugs": {
"url": "https://github.com/Glavin001/genetic-js/issues"
},
"keywords": [
"genetic",
"evolution",
"algorithm"
],
"author": "Glavin Wiechert",
"license": "MIT",
"readmeFilename": "README.md",
"devDependencies": {
"@types/jest": "^22.2.3",
"@types/node": "^10.5.2",
"jest": "^22.4.3",
"ts-jest": "^22.4.3",
"tslint": "^5.10.0",
"tslint-clean-code": "^0.2.7",
"tslint-microsoft-contrib": "^5.0.3",
"typescript": "^2.9.2"
}
}