UNPKG

1.53 kBJSONView Raw
1{
2 "name": "enome",
3 "version": "1.0.0",
4 "description": "A genome generation and evolution library.",
5 "main": "out/src/index.js",
6 "typings": "out/src/index.d.ts",
7 "scripts": {
8 "test": "mocha --colors --compilers ts:ts-node/register --require tsconfig-paths/register test/**/*.ts",
9 "watch": "mocha --colors --watch --compilers ts:ts-node/register --require tsconfig-paths/register test/**/*.ts",
10 "lint": "tsconfig-lint .",
11 "sum": "ts-node src/examples/sum.ts",
12 "letters": "ts-node src/examples/letters.ts",
13 "tsc": "tsc --watch",
14 "prepublish": "npm run compile",
15 "compile": "rimraf out && tsc"
16 },
17 "repository": {
18 "type": "git",
19 "url": "https://github.com/fiberwire/enome.git"
20 },
21 "keywords": [
22 "genetic",
23 "algorithm",
24 "genome",
25 "gene",
26 "evolution"
27 ],
28 "author": "Andrew Ramos",
29 "license": "ISC",
30 "dependencies": {
31 "chance": "^1.0.8",
32 "d3-interpolate": "^1.1.4",
33 "lodash": "^4.17.4",
34 "readline-sync": "^1.4.7",
35 "rx": "^4.1.0"
36 },
37 "devDependencies": {
38 "@types/chai": "^3.5.2",
39 "@types/chance": "^0.7.33",
40 "@types/d3-interpolate": "^1.1.5",
41 "@types/lodash": "^4.14.64",
42 "@types/mocha": "^2.2.41",
43 "@types/node": "^7.0.18",
44 "@types/readline-sync": "^1.4.2",
45 "@types/rx": "^4.1.1",
46 "chai": "^3.5.0",
47 "mocha": "^3.3.0",
48 "rimraf": "^2.6.1",
49 "ts-node": "^3.0.4",
50 "tsconfig-lint": "^0.12.0",
51 "tsconfig-paths": "^2.1.2",
52 "tslint": "^5.3.2",
53 "typescript": "^2.3.2"
54 }
55}