-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
52 lines (52 loc) · 1.1 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
52
{
"name": "pca9685",
"version": "5.0.0",
"homepage": "https://github.com/101100/pca9685",
"description": "PCA9685 I2C 16-channel PWM/servo driver module",
"author": {
"name": "Jason Heard",
"email": "[email protected]"
},
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"keywords": [
"pca9685",
"i2c",
"pwm",
"servo",
"adafruit",
"raspberrypi",
"beaglebone"
],
"repository": {
"type": "git",
"url": "https://github.com/101100/pca9685"
},
"bugs": {
"url": "https://github.com/101100/pca9685/issues"
},
"scripts": {
"build": "npm run lint && tsc",
"lint": "tslint index.ts src/*.ts examples/*.ts",
"prepublish": "npm run build",
"test": "npm run lint && tsc --noEmit"
},
"engines": {
"node": ">=8.0.0"
},
"devDependencies": {
"tslint": "^6.1.3",
"typescript": "^4.1.5"
},
"dependencies": {
"@types/debug": "4.1.5",
"@types/i2c-bus": "^5.1.0",
"debug": "^4.3.1",
"i2c-bus": "^5.2.1",
"rxjs": "^6.6.3"
},
"directories": {
"example": "examples"
}
}