forked from MylesBorins/node-osc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.27 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
{
"name": "node-osc",
"description": "pyOSC inspired library for sending and receiving OSC messages",
"version": "8.0.10",
"exports": {
"require": "./dist/lib/index.js",
"default": "./lib/index.mjs"
},
"author": {
"name": "Myles Borins",
"email": "[email protected]"
},
"engines": {
"node": "^14.18 || ^16.13 || >=18"
},
"license": "LGPL-3.0-or-later",
"scripts": {
"clean": "rm -rf dist/",
"build": "npm run clean && rollup --config rollup.config.mjs",
"prepublishOnly": "npm run build",
"lint": "eslint \"lib/**/*.mjs\" test/* examples/*",
"test": "npm run lint && npm run build && npm run test:esm && npm run test:cjs",
"test:esm": "c8 tap --no-coverage -j1 test/test-*.mjs",
"test:cjs": "tap --no-coverage -j1 dist/test/test-*.js"
},
"contributors": [
"Hans Hübner <[email protected]>",
"Andy Smith <[email protected]>",
"Myles Borins <[email protected]>"
],
"keywords": [
"osc",
"udp"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MylesBorins/node-osc.git"
},
"dependencies": {
"osc-min": "^1.1.1"
},
"devDependencies": {
"c8": "^7.12.0",
"eslint": "^8.24.0",
"get-port": "^6.1.2",
"rollup": "^3.10.1",
"tap": "^16.3.0"
}
}