-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 871 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 871 Bytes
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
{
"name": "simulation",
"version": "8.0.0",
"author": "Scott Fortmann-Roe",
"license": "AGPL",
"description": "simulation is a multi-method simulation package for physical or social systems. Use it to create models for the environment, business, or other domains.",
"keywords": [
"simulation",
"modeling",
"differential equations",
"system dynamics",
"agent based modeling",
"ABM"
],
"homepage": "https://github.com/scottfr/simulation",
"type": "module",
"main": "src/api/Model.js",
"exports": {
".": {
"types": "./types/api/Model.d.ts",
"import": "./src/api/Model.js",
"default": "./src/api/Model.js"
}
},
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"build-d-ts": "( test ! -d types || rm -r types ) && npx -p typescript tsc -p tsconfig.types.json"
}
}