node-web-i2c/package.json

44 lines
728 B
JSON
Raw Normal View History

2019-10-18 03:23:29 +09:00
{
2019-10-18 21:41:11 +09:00
"name": "node-web-i2c",
2020-02-06 11:24:24 +09:00
"version": "1.1.2",
2019-10-18 03:23:29 +09:00
"description": "I2C access with Node.js",
"main": "index.js",
2019-12-19 14:04:48 +09:00
"files": [
"index.*"
],
2019-10-18 03:23:29 +09:00
"repository": {
"type": "git",
2019-10-18 21:41:11 +09:00
"url": "https://github.com/kou029w/node-web-i2c.git"
2019-10-18 03:23:29 +09:00
},
"author": "Kohei Watanabe <kou029w@gmail.com>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
2019-12-19 14:04:48 +09:00
"i2c-bus": "~5"
2019-10-18 03:23:29 +09:00
},
"devDependencies": {
2019-12-19 14:04:48 +09:00
"@types/node": "~12",
2019-11-08 16:24:44 +09:00
"typescript": "~3.7"
2019-10-18 03:23:29 +09:00
},
"scripts": {
"build": "tsc"
2019-10-18 21:41:11 +09:00
},
"keywords": [
"hardware",
"i2c",
"iot",
"linux",
"pi",
"raspberry",
"raspberry pi",
"raspi",
"robot",
"robotics",
"robots",
"rpi",
"smbus"
]
2019-10-18 03:23:29 +09:00
}