-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.21 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
53
54
55
56
{
"name": "lsm303-rx",
"version": "2.0.1",
"description": "Reactive stream for the LSM303 I2C 3D compass and accelerometer module",
"author": {
"name": "Jason Heard",
"email": "jasonpheard@gmail.com"
},
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"keywords": [
"lsm303",
"lsm303dlhc",
"i2c",
"compass",
"magnometer",
"accelerometer",
"adafruit",
"raspberrypi",
"beaglebone"
],
"repository": {
"type": "git",
"url": "https://github.com/101100/lsm303-rx"
},
"bugs": {
"url": "https://github.com/101100/lsm303-rx/issues"
},
"scripts": {
"build": "npm run lint && tsc",
"lint": "tslint --project tsconfig.json index.ts src/*.ts examples/*.ts",
"prepublish": "npm run build",
"test": "npm run build"
},
"engines": {
"node": ">= 8.0.0"
},
"devDependencies": {
"i2c-bus": "^5.0",
"printf": "^0.5.3",
"tslint": "^6.1.0",
"typescript": "^3.8.3"
},
"dependencies": {
"@types/debug": "^4.1.5",
"@types/i2c-bus": "^5.1.0",
"@types/node": "^8",
"debug": "^4.1.1",
"es6-promise": "^4.2.8",
"rxjs": "^6.5.4"
},
"directories": {
"example": "examples"
}
}