-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·46 lines (46 loc) · 1.39 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
{
"author": "Dmitriy Yurov <narkozzforb@gmail.com>",
"name": "async-genetic",
"description": "Implementation of genetic algorithms for nodejs and browser",
"version": "1.6.8",
"homepage": "https://github.com/BusinessDuck/async-genetic",
"repository": {
"type": "git",
"url": "git://github.com/BusinessDuck/async-genetic"
},
"scripts": {
"start": "ts-node --",
"build": "rollup -c ./rollup.config.js",
"version": "npm run build",
"postversion": "git push && git push --tags"
},
"bugs": {
"url": "https://github.com/BusinessDuck/async-geneticissues"
},
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"browser": "lib/index.umd.js",
"types": "lib/index.d.ts",
"dependencies": {
"object-path-immutable": "^4.1.0"
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.1",
"rollup": "^2.18.0",
"rollup-plugin-gzip": "^2.2.0",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.27.1",
"rollup-plugin-uglify-es": "0.0.1",
"ts-node": "^8.10.2",
"tslib": "^2.0.0",
"typescript": "^3.9.5"
}
}