@adrianperea/genie.js
Version:
A highly flexible, data-agnostic, and UI-independent Genetic Algorithm Library
57 lines (56 loc) • 1.31 kB
JSON
{
"name": "@adrianperea/genie.js",
"version": "1.0.0",
"description": "A highly flexible, data-agnostic, and UI-independent Genetic Algorithm Library",
"main": "lib/index.js",
"scripts": {
"test": "nyc mocha",
"build": "npm run lint && babel ./src -d ./lib",
"lint": "eslint ./src",
"clean": "rm -rf ./lib",
"prepublishOnly": "npm run clean && npm run build",
"watch": "npm-watch"
},
"watch": {
"build": "src/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adrianmarkperea/genie.git"
},
"keywords": [
"javascript",
"genetic algorithm",
"evolution",
"optimization",
"AI",
"Artificial Intelligence"
],
"author": "Adrian Mark Perea",
"license": "MIT",
"bugs": {
"url": "https://github.com/adrianmarkperea/genie/issues"
},
"homepage": "https://github.com/adrianmarkperea/genie#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/register": "^7.9.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"mocha": "^7.1.2",
"npm-watch": "^0.6.0",
"nyc": "^15.0.1"
},
"prettier": {
"singleQuote": true
},
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"dependencies": {}
}