Files
agent/packages/uhk-usb/package.json
Róbert Kiss 1eb8720305 chore: reorganize npm script (#884)
The goal is every package should be responsible to `lint`, `build` and
`test` commands. This modification helps to easier add new package to
the repository.
2018-12-22 02:20:38 +01:00

20 lines
383 B
JSON

{
"name": "uhk-usb",
"version": "1.0.0",
"description": "Agent preliminary USB code",
"main": "dist/index.js",
"license": "GPL-3.0",
"scripts": {
"build": "tsc",
"lint": "tslint --project tsconfig.json"
},
"devDependencies": {
"@types/node": "8.0.28"
},
"dependencies": {
"node-hid": "0.7.3",
"tslib": "1.9.3",
"uhk-common": "1.0.0"
}
}