1
0
mirror of synced 2025-02-17 11:08:33 +01:00
nfc2card/package.json

34 lines
828 B
JSON
Raw Normal View History

2022-03-14 15:07:52 +09:00
{
"name": "@kamyu/nfc2card",
2022-03-14 15:12:11 +09:00
"version": "0.1.1",
2022-03-14 15:07:52 +09:00
"description": "Konmai Card NFC ID Encoder/Decoder",
"main": "dist/index.js",
"scripts": {
"prepare": "husky install",
"build": "tsc",
2022-03-14 15:12:11 +09:00
"lint": "eslint src/**/*.ts",
"prepublish": "npm run build"
2022-03-14 15:07:52 +09:00
},
"keywords": [],
"author": "Byeon Seongun <kamyu@kamyu.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kamyu1537/nfc2card/issues"
},
"homepage": "https://github.com/kamyu1537/nfc2card#readme",
"devDependencies": {
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.11.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.5",
"typescript": "^4.6.2"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix"
]
}
}