-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
39 lines (39 loc) · 912 Bytes
/
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
{
"name": "raspi",
"version": "6.0.1",
"description": "Provides access to Raspberry Pi peripherals from Node.js",
"main": "dist/index.js",
"types": "./declarations/index.d.ts",
"scripts": {
"prebuild": "tslint 'src/**/*.ts'",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/nebrius/raspi.git"
},
"keywords": [
"raspberry pi",
"robotics",
"nodebots"
],
"author": "Bryan Hughes <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nebrius/raspi/issues"
},
"homepage": "https://github.com/nebrius/raspi",
"dependencies": {
"j5-io-types": "^2.4.0",
"raspi-board": "^7.0.0"
},
"devDependencies": {
"@types/node": "^10.12.12",
"tslint": "^5.11.0",
"typescript": "^3.2.1"
},
"engines": {
"node": ">= 6.4.0"
}
}