enome
Version:
A genome generation and evolution library.
80 lines (79 loc) • 2 kB
JSON
{
"name": "enome",
"version": "4.5.0",
"description": "A genome generation and evolution library.",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/fiberwire/enome.git"
},
"author": {
"name": "Andrew Ramos",
"email": "andrew.ramos92@gmail.com",
"url": ""
},
"keywords": [
"genetic",
"algorithm",
"genome",
"gene",
"evolution",
"reactive",
"async"
],
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib && rimraf coverage",
"format": "prettier --write \"{src,__tests__}/**/*.ts\" --single-quote --trailing-comma es5",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"prepublish": "npm run build",
"prebuild": "npm run clean && npm run format && npm run lint && echo Using TypeScript && tsc --version",
"build": "tsc --pretty",
"test": "jest --watch",
"coverage": "jest --coverage",
"watch": "npm run build -- --watch",
"watch:test": "jest --watch"
},
"dependencies": {
"chance": "^1.0.10",
"d3-interpolate": "^1.1.5",
"enviro-rx": "^2.0.2",
"lodash": "^4.17.4",
"rxjs": "^5.4.3"
},
"devDependencies": {
"@types/chance": "^0.7.34",
"@types/d3-interpolate": "^1.1.6",
"@types/jest": "^20.0.5",
"@types/lodash": "^4.14.71",
"@types/node": "^8.0.0",
"coveralls": "^2.0.0",
"jest": "^20.0.4",
"jest-environment-node-debug": "^2.0.0",
"prettier": "^1.5.2",
"rimraf": "^2.0.0",
"ts-jest": "^20.0.7",
"ts-node": "^3.2.0",
"tslint": "^5.0.0",
"tslint-config-prettier": "^1.1.0",
"typescript": "^2.0.0"
},
"engines": {
"node": ">=6.0.0"
},
"jest": {
"transform": {
".(ts)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|js)$",
"moduleFileExtensions": [
"ts",
"js"
],
"testEnvironment": "node"
}
}