UNPKG

node-pantilt-hat

Version:

Pimoroni PanTilt servo and lighting HAT for node.js

52 lines (51 loc) 1.07 kB
{ "name": "node-pantilt-hat", "version": "0.0.1", "description": "Pimoroni PanTilt servo and lighting HAT for node.js", "main": "index.js", "scripts": { "build": "tsc index.ts && tsc index.ts -d", "test": "jest" }, "author": "chikoboo", "license": "MIT", "dependencies": { "@types/i2c-bus": "^1.0.18", "i2c-bus": "^3.2.0" }, "devDependencies": { "@types/jest": "^23.1.2", "@types/power-assert": "^1.5.0", "jest": "^23.2.0", "power-assert": "^1.6.0", "ts-jest": "^22.4.6", "typescript": "^2.9.2" }, "types": "./index.d.ts", "repository": { "type": "git", "url": "git@github.com:chikoboo/node-pantilt-hat.git" }, "keywords": [ "Pimoroni", "PanTilt", "HAT", "Raspberry", "Pi" ], "jest": { "globals": { "ts-jest": { "tsConfigFile": "./tsconfig.json" } }, "transform": { "^.+\\.ts?$": "ts-jest" }, "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(js|ts)$", "moduleFileExtensions": [ "ts", "js" ] } }