-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "pi-led-control",
"version": "2.0.1",
"description": "Control different types of LEDs from your Raspberry Pi.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "husky install",
"test": "jest",
"lint": "eslint . --ext .ts --cache && npx prettier --check .",
"build": "tsc",
"fix": "eslint . --ext .ts --cache --fix && npx prettier --write . --ignore-unknown"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rpitv/pi-led-control.git"
},
"author": "RPI TV",
"license": "MIT",
"bugs": {
"url": "https://github.com/rpitv/pi-led-control/issues"
},
"homepage": "https://github.com/rpitv/pi-led-control#readme",
"engines": {
"node": "^12 || ^14 || ^16"
},
"dependencies": {
"pigpio": "^3.3.1",
"ts-node": "^10.7.0",
"@types/node": "^17.0.21"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.5",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
},
"lint-staged": {
"**/*": "npm run fix"
}
}