node-web-gpio/package.json

47 lines
995 B
JSON
Raw Normal View History

2019-10-13 02:13:19 +09:00
{
2019-10-18 21:16:23 +09:00
"name": "node-web-gpio",
2021-10-26 03:31:52 +00:00
"version": "1.0.10",
2019-10-13 02:13:19 +09:00
"description": "GPIO access with Node.js",
2020-09-03 18:33:42 +09:00
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
2019-10-13 02:13:19 +09:00
"repository": {
"type": "git",
2020-02-06 23:46:43 +09:00
"url": "https://github.com/chirimen-oh/node-web-gpio.git"
2019-10-13 02:13:19 +09:00
},
"author": "Kohei Watanabe <kou029w@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.11",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.4.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"prettier": "^2.5.1",
"typescript": "^4.2.3"
2019-10-13 02:13:19 +09:00
},
"scripts": {
2020-09-03 18:33:42 +09:00
"build": "tsc",
"lint": "eslint index.ts",
"prepare": "husky install && rm -rf dist && npm run build",
"precommit": "lint-staged"
2019-10-18 21:16:23 +09:00
},
"keywords": [
"gpio",
"hardware",
"iot",
"linux",
"pi",
"raspberry",
"raspberry pi",
"raspi",
"robot",
"robotics",
"robots",
"rpi"
]
2019-10-13 02:13:19 +09:00
}