forked from Vertumnus/js-rpi-softspi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.04 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.04 KB
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
{
"name": "rpi-softspi",
"description": "Software SPI implementation to use any Raspberry Pi pins as a SPI interface",
"version": "1.0.5",
"keywords": [
"spi",
"raspberry",
"raspberrypi",
"raspberry pi",
"rpi",
"gpio"
],
"author": "Armin Junge",
"license": "MIT",
"repository": "git://github.com/Vertumnus/js-rpi-softspi.git",
"bugs": {
"url": "https://github.com/Vertumnus/js-rpi-softspi/issues"
},
"contributors": [],
"directories": {
"lib": "./lib",
"doc": "./doc"
},
"dependencies": {
"rpio": "*"
},
"devDependencies": {
"grunt": "^1.0.1",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-uglify": "github:gruntjs/grunt-contrib-uglify#harmony",
"grunt-jsdoc": "^2.1.0",
"grunt-npm-command": "^0.1.2",
"grunt-coveralls": "^1.0.1",
"mock-require": "^2.0.2",
"uglify-es": "github:mishoo/UglifyJS2#harmony"
},
"scripts": {
"test": "mocha",
"coverage": "nyc --reporter=lcov mocha"
}
}