-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.52 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
{
"name": "bno055-imu-node",
"version": "1.4.0",
"description": "Interact with a BNO055 IMU from your Node.js app",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test-changes": "echo 'Source will rebuild and retest on changes' && nodemon --config nodemon.test.json",
"build": "rimraf dist && tsc -p src",
"build-app": "(cd examples/app && rimraf dist && tsc -p src)",
"test": "ts-node -P examples/tsconfig.json",
"lint": "tslint -c ./tslint.json --project examples && tslint -c ./tslint.json --project src",
"prepublishOnly": "npm run lint && npm run build",
"sync": "npm run build && node sync",
"sync-changes": "echo 'Changes will be pushed to remote device' && nodemon --config nodemon.sync.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexeden/bno055-imu-node.git"
},
"author": "Alex Eden",
"license": "MITNFA",
"keywords": [
"iot",
"raspberry",
"raspberrypi",
"sensor",
"pi",
"rpi",
"beaglebone",
"bno055",
"imu",
"i2c",
"adafruit"
],
"bugs": {
"url": "https://github.com/alexeden/bno055-imu-node/issues"
},
"homepage": "https://github.com/alexeden/bno055-imu-node#readme",
"devDependencies": {
"@types/i2c-bus": "^5.1.0",
"@types/node": "^13.9.2",
"chalk": "^3.0.0",
"nodemon": "^2.0.2",
"rimraf": "^3.0.2",
"rsync": "^0.6.1",
"ts-node": "^8.7.0",
"tslint": "^6.1.0",
"typescript": "^3.8.3"
},
"dependencies": {
"i2c-bus": "^5.1.0"
}
}