forked from bpowers/sd.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.87 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.87 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
{
"name": "sd.js",
"version": "5.2.8",
"description": "system dynamics model simulation and visualization",
"homepage": "https://sdlabs.io",
"keywords": [
"sd",
"system dynamics",
"modeling",
"simulation"
],
"author": "Bobby Powers <bobbypowers@gmail.com>",
"license": "MIT",
"main": "./lib/sd.js",
"module": "./build/sd.js",
"typings": "./lib/sd.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/bpowers/sd.js.git"
},
"bin": {
"emit_sim.js": "./bin/emit_sim.js",
"mdl.js": "./bin/mdl.js"
},
"dependencies": {
"immutable": "^4.0.0-rc.12",
"mustache": "^4.0.1"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.4",
"@types/mustache": "^4.0.1",
"@types/node": "^14.14.10",
"@types/xmldom": "^0.1.30",
"chai": "^4.2",
"lodash": "^4.17.20",
"mocha": "^8.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.0",
"tslint": "^6.1.3",
"tslint-react": "^5.0",
"typescript": "^4.1.2",
"watch": "^1.0.2",
"xmldom": "^0.4"
},
"scripts": {
"needs-format": "prettier -l \"src/*.ts\" \"test/*.ts\" \"runtime/*.ts\"",
"format": "prettier --write \"src/*.ts\" \"test/*.ts\" \"runtime/*.ts\"",
"lint": "yarn run tslint -c .tslint.json --project .tsconfig.lib-cjs.json",
"test": "tsc -p .tsconfig.test.json && mocha",
"build:pre": "node support/mkdirp.js build-rt lib build",
"build:runtime0": "tsc -p .tsconfig.rt.json",
"build:runtime1": "node support/build-runtime.js src/runtime.ts",
"build:lib": "tsc -p .tsconfig.lib-cjs.json",
"build:build": "tsc -p .tsconfig.lib.json",
"build": "npm-run-all build:pre build:runtime0 build:runtime1 -p build:lib build:build",
"prepublishOnly": "make clean && npm run-script build",
"tsc:build": "tsc -w"
},
"engines": {
"node": ">=6.11.4"
}
}