node-web-i2c/package.json
Akihiko.KIgure 6d341aaaf7
TSDoc (#46)
Ref. #45

Co-authored-by: akihiko kigure <akihiko.kigure@lifewood-m1.local>
2022-04-02 12:52:59 +09:00

55 lines
1.3 KiB
JSON

{
"name": "node-web-i2c",
"version": "1.1.18",
"description": "I2C access with Node.js",
"main": "index.js",
"files": [
"index.*"
],
"repository": {
"type": "git",
"url": "https://github.com/chirimen-oh/node-web-i2c.git"
},
"author": "Kohei Watanabe <kou029w@gmail.com>",
"license": "MIT",
"dependencies": {
"@types/i2c-bus": "^5.1.0",
"@types/node": "^16.11.12",
"i2c-bus": "^5.2.2"
},
"devDependencies": {
"@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",
"typedoc": "^0.22.10",
"typescript": "^4.2.4"
},
"scripts": {
"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"
},
"keywords": [
"hardware",
"i2c",
"iot",
"linux",
"pi",
"raspberry",
"raspberry pi",
"raspi",
"robot",
"robotics",
"robots",
"rpi",
"smbus"
]
}