-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
58 lines (58 loc) · 1.83 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
{
"name": "sdeverywhere-monorepo",
"private": true,
"description": "SDEverywhere translates System Dynamics models from Vensim to C and WebAssembly",
"type": "module",
"scripts": {
"clean": "pnpm -r clean",
"lint-pkgs": "pnpm -r lint",
"lint": "pnpm lint-pkgs",
"prettier-local:check": "prettier --check \"./*.{js,json,md,yaml}\"",
"prettier-local:fix": "prettier --write \"./*.{js,json,md,yaml}\"",
"prettier-pkgs:check": "pnpm -r prettier:check",
"prettier-pkgs:fix": "pnpm -r prettier:fix",
"prettier:check": "run-s prettier-local:check prettier-pkgs:check",
"prettier:fix": "run-s prettier-local:fix prettier-pkgs:fix",
"precommit": "pnpm -r precommit",
"build": "pnpm run -r --workspace-concurrency=1 build",
"test:pkgs": "pnpm -r test",
"test:c-int": "./tests/run-c-int-tests",
"test:js-int": "./tests/run-js-int-tests",
"test": "run-s test:pkgs test:c-int test:js-int"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-svelte3": "^4.0.0",
"glob": "^8.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"tsup": "^8.2.4",
"typedoc": "0.25.0",
"typedoc-plugin-markdown": "3.16.0",
"typescript": "^5.2.2",
"vitest": "^2.0.5"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"eslint",
"rollup",
"svelte"
]
}
},
"author": "Climate Interactive",
"license": "MIT",
"homepage": "https://sdeverywhere.org",
"repository": {
"type": "git",
"url": "https://github.com/climateinteractive/SDEverywhere.git"
},
"bugs": {
"url": "https://github.com/climateinteractive/SDEverywhere/issues"
}
}