UNPKG

osc-min

Version:

Simple utilities for open sound control in node.js

68 lines (67 loc) 1.51 kB
{ "name": "osc-min", "version": "2.1.2", "author": { "name": "Russell McClellan", "email": "russell.mcclellan@gmail.com", "url": "http://www.russellmcc.com" }, "description": "Simple utilities for open sound control in node.js", "keywords": [ "open sound control", "OSC", "music control", "NIME" ], "repository": { "type": "git", "url": "http://github.com/russellmcc/node-osc-min.git" }, "exports": { "types": "./dist/index.d.ts", "import": "./dist/index.js" }, "devDependencies": { "@eslint/js": "^9.12.0", "@types/jest": "^29.5.13", "eslint": "^9.12.0", "eslint-plugin-prefer-arrow-functions": "^3.4.1", "globals": "^15.11.0", "jest": "^29.7.0", "markdown-magic": "^3.3.0", "ts-jest": "^29.2.5", "typescript": "^5.6.3", "typescript-eslint": "^8.8.1" }, "directories": { "lib": "lib", "examples": "examples" }, "license": "Zlib", "engines": { "node": ">=0.10.0" }, "type": "module", "scripts": { "prepublish": "npm run build && npm run docs", "build": "tsc", "docs": "md-magic readme.md", "test": "NODE_OPTIONS=--experimental-vm-modules jest", "lint": "eslint" }, "jest": { "testEnvironment": "node", "testRegex": "(/test/.*\\.test\\.ts$)", "transform": { "^.+.ts$": [ "ts-jest", { "tsconfig": { "strict": false, "strictNullChecks": true } } ] } } }