-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
29 lines (29 loc) · 958 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
{
"name": "bus-pirate",
"version": "0.2.4",
"description": "Control Bus Pirate hardware with Node.JS",
"main": "BusPirate.js",
"scripts": {
"test": "./node_modules/.bin/mocha test/all.js",
"test_main": "./node_modules/.bin/mocha test/BusPirate.js",
"test_i2c": "./node_modules/.bin/mocha test/i2c.js",
"test_uart": "./node_modules/.bin/mocha test/uart.js",
"gen_docs": "./node_modules/.bin/jsdoc -c conf.json --readme README.md",
"exampleUart": "node --use_strict examples/uart.js"
},
"keywords": [],
"author": "nodebotanist",
"license": "ISC",
"repository": "[email protected]:nodebotanist/node-bus-pirate.git",
"dependencies": {
"async": "^2.1.4",
"serialport": "^4.0.3"
},
"devDependencies": {
"chai": "^3.5.0",
"ink-docstrap": "^1.3.0",
"jsdoc": "^3.4.3",
"mocha": "^3.2.0",
"sinon": "^1.17.7"
}
}