-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 3.26 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "corba.js",
"version": "0.1.13",
"description": "Object Request Broker (ORB) and Interface Definition Language (IDL) compiler",
"author": "Mark-André Hopf <mhopf@mark13.org>",
"license": "AGPL-3.0",
"type": "module",
"engines": {
"npm": ">=10.5.0",
"node": ">=21.7.1"
},
"exports": {
".": {
"import": "./lib/src/orb/index.js",
"types": "./lib/src/orb/index.d.ts"
},
"./net/*": {
"import": "./lib/src/net/*.js",
"types": "./lib/src/net/*/*.d.ts"
}
},
"files": [
"bin",
"LICENSE",
"lib/idl",
"lib/src",
"package.json",
"README.md"
],
"typesVersions": {
"*": {
"*": [
"lib/src/*.d.ts"
]
}
},
"bin": {
"corba-idl": "./bin/corba-idl"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markandre13/corba.js.git"
},
"scripts": {
"build": "npm run build:idl:build && npm run build:idl:compile && npm run build:src:compile",
"build:idl:build": "rollup --config rollup.config.js",
"build:idl:compile": "bin/corba-idl --ts-all --output-directory test/generated test/*.idl test/*/*.idl",
"build:src:compile": "tspc",
"test": "npm run build && NODE_EXTRA_CA_CERTS=test/x509/root/certs/root.cert.pem node --enable-source-maps ./node_modules/.bin/mocha --exit 'lib/test/**/*.spec.js'",
"dev:build": "npm run build:idl:build && npm run build:idl:compile && tspc --watch",
"dev:test": "export NODE_EXTRA_CA_CERTS=test/x509/root/certs/root.cert.pem ; if test -z \"$npm_config_file\" ; then node --enable-source-maps ./node_modules/.bin/mocha --parallel --watch 'lib/test/**/*.spec.js' ; else node --enable-source-maps ./node_modules/.bin/mocha --parallel --watch $npm_config_file; fi",
"omni:runs": "npm run omni:copy && ssh 192.168.1.105 'cd test-omni && make runs'",
"omni:runc": "npm run omni:copy && ssh 192.168.1.105 'cd test-omni && make runc'",
"omni:copy": "scp test/peer/omni/* test/giop.idl 192.168.1.105:test-omni/",
"mico:runs": "npm run mico:copy && ssh 192.168.1.105 'cd test-mico && make runs'",
"mico:runc": "npm run mico:copy && ssh 192.168.1.105 'cd test-mico && make runc'",
"mico:copy": "scp test/peer/mico/* 192.168.1.105:test-mico/",
"update": "npx npm-check-updates -u && npm install"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@types/chai": "^5.0.1",
"@types/chai-as-promised": "^8.0.1",
"@types/memorystream": "^0.3.4",
"@types/mocha": "^10.0.9",
"@types/mocha-each": "^2.0.4",
"@types/node": "^22.9.0",
"@types/websocket": "^1.0.10",
"chai": "^5.1.2",
"chai-as-promised": "^8.0.0",
"memorystream": "^0.3.1",
"mocha": "^10.8.2",
"mocha-each": "^2.0.1",
"rollup": "^4.27.2",
"rollup-plugin-typescript2": "^0.36.0",
"ts-node": "^10.9.2",
"ts-patch": "^3.2.1",
"typescript": "^5.6.3",
"websocket": "^1.0.35"
},
"dependencies": {
"uuid": "^11.0.3"
}
}