-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (65 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (65 loc) · 1.52 KB
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
{
"name": "js-simulator",
"version": "1.0.18",
"description": "General-purpose discrete-event simulator for agent-based modelling and simulation",
"author": "Xianshun Chen",
"contributors": [
"Xianshun Chen <xs0040@gmail.com>"
],
"license": "MIT",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha test",
"cover": "istanbul cover _mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"bin": {
"js-simulator": "./src/jssim.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chen0040/js-simulator.git"
},
"keywords": [
"discrete",
"event",
"simulator",
"multiagent",
"multi-agent",
"discrete-event-simulation",
"simulation",
"abms",
"agent",
"modelling and simulation",
"agent-based modelling and simulation",
"intelligent agent",
"agent-modelling",
"flocking",
"L system",
"fractal",
"particle swarm",
"ant system",
"school yard",
"game of life",
"simulation engine"
],
"dependencies": {
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.13.1",
"grunt": "^1.0.1",
"grunt-contrib-uglify": "^3.0.0",
"grunt-eslint": "^19.0.0",
"grunt-mocha-test": "^0.13.2",
"istanbul": "^0.4.5",
"mocha": "^3.4.1"
},
"bugs": {
"url": "https://github.com/chen0040/js-simulator/issues"
},
"homepage": "https://github.com/chen0040/js-simulator#readme"
}