node-web-i2c/package.json

56 lines
1.3 KiB
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",
2023-03-18 08:18:37 +00:00
"version": "1.1.27",
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",
"@types/node": "^18.0.0",
"i2c-bus": "^5.2.2"
2019-10-18 03:23:29 +09:00
},
"devDependencies": {
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^8.4.1",
"husky": "^8.0.0",
"lint-staged": "^13.0.0",
"prettier": "^2.5.1",
"typedoc": "^0.23.0",
"typescript": "^5.0.0"
2019-10-18 03:23:29 +09:00
},
"scripts": {
2021-02-06 17:20:46 +09:00
"build": "tsc",
"lint": "eslint index.ts",
"prepare": "husky install && rm -rf dist && npm run build",
"precommit": "lint-staged",
"docs": "npm run remove:docs && npm run typedoc -- --options typedoc.json --exclude '**/*.spec.ts' ./ README.md",
"typedoc": "typedoc",
"remove:docs": "rm -rf docs"
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
}