-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
38 lines (38 loc) · 1.16 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
{
"name": "@sdeverywhere/compile",
"version": "0.7.21",
"description": "The core Vensim to C compiler for the SDEverywhere tool suite.",
"type": "module",
"main": "./src/index.js",
"scripts": {
"lint": "eslint . --max-warnings 0",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"precommit": "../../scripts/precommit",
"type-check": "tsc --noEmit -p tsconfig-test.json",
"test": "vitest run",
"test:watch": "vitest --hideSkippedTests",
"test:ci": "vitest run",
"ci:build": "run-s lint prettier:check type-check test:ci"
},
"dependencies": {
"@sdeverywhere/parse": "^0.1.2",
"bufx": "^1.0.5",
"byline": "^5.0.0",
"csv-parse": "^5.3.3",
"js-yaml": "^3.13.1",
"ramda": "^0.27.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz"
},
"author": "Climate Interactive",
"license": "MIT",
"homepage": "https://sdeverywhere.org",
"repository": {
"type": "git",
"url": "https://github.com/climateinteractive/SDEverywhere.git",
"directory": "packages/compile"
},
"bugs": {
"url": "https://github.com/climateinteractive/SDEverywhere/issues"
}
}