-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.41 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
{
"name": "@dropecho/interop",
"version": "0.3.0",
"description": "A library with interop / utils used by other dropecho libs.",
"author": "vantreeseba <vantreeseba@gmail.com>",
"repository": "github:dropecho/interop",
"license": "MIT",
"scripts": {
"install": "lix download",
"test": "npm run test:haxe && npm run test:native",
"test:haxe": "haxelib run dropecho.testing",
"test:native": "npm run build && npm run test:native-cs && npm run test:native-js",
"test:native-cs": "npm run test:native-cs:build && npm run test:native-cs:run",
"test:native-cs:build": "cd lang_tests/cs && mcs -r:../../dist/cs/dropecho.interop/bin/dropecho.interop.dll -recurse:*.cs -out:Main.exe",
"test:native-cs:run": "cd lang_tests/cs && ./Main.exe",
"test:native-js": "npm run test:native-js:run",
"test:native-js:run": "cd lang_tests/js && node index.cjs",
"build": "haxe build.hxml",
"clean": "rm -rf artifacts"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"semantic-release": "^19.0.5",
"semantic-release-haxelib": "^1.1.0"
},
"type": "module",
"dependencies": {
"lix": "^15.12.0"
}
}