-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.44 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "ts-neuroevolution",
"version": "2.0.0",
"description": "Neuroevolution library in TypeScript",
"keywords": [
"Neuroevolution",
"Neuro-evolution",
"Artificial intelligence",
"Evolutionary algorithms",
"Artificial neural networks",
"Neural networks",
"TypeScript"
],
"bugs": {
"type": "git",
"url": "https://github.com/jxmked/ts-neuroevolution/issues"
},
"license": "MIT",
"author": "",
"type": "module",
"main": "dist/main.js",
"unpkg": "dist/neuroevolution.js",
"types": "dist/declarations/index.d.ts",
"typings": "dist/declarations/index.d.ts",
"scripts": {
"test": "jest ./tests --config=jest.config.js",
"start": "npm run dev",
"dev": "rollup -c rollup.config.js --environment mode:development --umd --node -w",
"dev:umd": "rollup -c rollup.config.js --environment mode:development --umd -w",
"dev:node": "rollup -c rollup.config.js --environment mode:development --node -w",
"serve": "serve ./dist -n -L -p 8080",
"build": "rollup -c rollup.config.js --umd --node --environment mode:production",
"build:umd": "rollup -c rollup.config.js --environment mode:production --umd",
"build:node": "rollup -c rollup.config.js --environment mode:production --node",
"build:tsc": "tsc --declaration true --emitDeclarationOnly --declarationDir dist/declarations",
"prettier-format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"lint": "eslint -c .eslintrc.json ./src",
"lint:fix": "eslint -c .eslintrc.json ./src --fix"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.3.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.2.6",
"@types/lodash": "^4.14.191",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"eslint": "^8.32.0",
"jest": "^29.3.1",
"lodash": "^4.17.21",
"prettier": "^1.19.1",
"rimraf": "^4.1.1",
"rollup": "^3.10.0",
"rollup-plugin-summary": "^2.0.0",
"rollup-watch": "^4.3.1",
"serve": "^14.1.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"uglify-js": "^3.17.4"
},
"files": [
"./dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jxmked/ts-neuroevolution.git"
},
"homepage": "https://github.com/jxmked/ts-neuroevolution#readme"
}