-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.01 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.01 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
{
"name": "nl-auto-converter",
"version": "0.1.0",
"description": "A service for incrementally converting old NetLogo models to newer versions",
"author": "ERSUCC",
"license": "GPL-2.0",
"private": true,
"homepage": "https://github.com/NetLogo/Auto-Converter",
"bugs": {
"url": "https://github.com/NetLogo/Auto-Converter/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NetLogo/Auto-Converter.git"
},
"type": "module",
"main": "out/src/main.js",
"engines": {
"npm": "~11.12.1",
"node": "~24.15.0"
},
"scripts": {
"build": "npx tsc && npm run scala-build",
"scala-build": "mkdir -p out/lib && scalac -cp releases/7.0.4/*.jar -d out/lib/AutoConverter.jar src/scala/AutoConverter.scala && cp -r releases/7.0.4/* out/lib",
"serve": "node out/src/main.js"
},
"dependencies": {
"express": "~5.2.1",
"multer": "~2.1.1"
},
"devDependencies": {
"typescript": "~6.0.3",
"@types/express": "~5.0.6",
"@types/multer": "~2.1.0"
}
}