-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
70 lines (70 loc) · 2.01 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
{
"name": "irma",
"version": "0.2.0",
"description": "irma - JavaScript digital organisms ecosystem simulator",
"main": "irma.js",
"directories": {
"doc": "doc"
},
"dependencies": {
"panzoom": "^8.4.0"
},
"scripts": {
"test": "run-script-os",
"dtest": "run-script-os",
"test:win32": "SET NODE_ENV=production& npx karma start",
"dtest:win32": "SET NODE_ENV=development& npx karma start",
"test:linux": "export NODE_ENV=production;export CHROME_BIN=$(which chromium);npx karma start",
"dtest:linux": "export NODE_ENV=development;export CHROME_BIN=$(which chromium);npx karma start",
"cover": "istanbul cover tests/run.js",
"prod": "npx webpack --mode=production",
"dev": "npx webpack --mode=development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tmptrash/irma.git"
},
"keywords": [
"genetic algorithm",
"digital organisms",
"evolution",
"javascript",
"linear genetic programming",
"evolutionary programming",
"Artificial life",
"ALife",
"Virtual Machine",
"Simulation"
],
"author": "flatline",
"license": "MIT",
"bugs": {
"url": "https://github.com/tmptrash/irma/issues"
},
"homepage": "https://github.com/tmptrash/irma/issues#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-register": "latest",
"clean-webpack-plugin": "^0.1.19",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jasmine": "^4.1.0",
"eslint-plugin-prettier": "^3.1.1",
"ignore-loader": "^0.1.2",
"istanbul": "^0.4.5",
"jasmine": "^3.3.1",
"jasmine-core": "^3.4.0",
"karma": "^4.2.0",
"karma-chrome-launcher": "^3.0.0",
"karma-jasmine": "^2.0.1",
"karma-webpack": "^4.0.2",
"prettier": "^1.19.1",
"run-script-os": "^1.0.7",
"watchify": "^3.11.1",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.6"
}
}