2019-10-18 03:23:29 +09:00
|
|
|
{
|
2019-10-18 21:41:11 +09:00
|
|
|
"name": "node-web-i2c",
|
2022-01-11 09:07:23 +00:00
|
|
|
"version": "1.1.16",
|
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",
|
2020-02-06 23:46:05 +09:00
|
|
|
"url": "https://github.com/chirimen-oh/node-web-i2c.git"
|
2019-10-18 03:23:29 +09:00
|
|
|
},
|
|
|
|
"author": "Kohei Watanabe <kou029w@gmail.com>",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2020-06-25 11:37:34 +09:00
|
|
|
"@types/i2c-bus": "^5.1.0",
|
2021-12-08 23:03:28 +09:00
|
|
|
"@types/node": "^16.11.12",
|
|
|
|
"i2c-bus": "^5.2.2"
|
2019-10-18 03:23:29 +09:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-12-08 23:03:28 +09:00
|
|
|
"@types/node": "^16.11.12",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^5.6.0",
|
|
|
|
"@typescript-eslint/parser": "^5.6.0",
|
|
|
|
"eslint": "^8.4.1",
|
|
|
|
"husky": "^7.0.4",
|
|
|
|
"lint-staged": "^12.1.2",
|
|
|
|
"prettier": "^2.5.1",
|
2021-04-19 12:57:49 +00:00
|
|
|
"typescript": "^4.2.4"
|
2019-10-18 03:23:29 +09:00
|
|
|
},
|
|
|
|
"scripts": {
|
2021-02-06 17:20:46 +09:00
|
|
|
"build": "tsc",
|
2021-03-28 17:31:45 +09:00
|
|
|
"lint": "eslint index.ts",
|
2021-12-08 23:03:28 +09:00
|
|
|
"prepare": "husky install && rm -rf dist && npm run build",
|
|
|
|
"precommit": "lint-staged"
|
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
|
|
|
}
|