-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
78 lines (78 loc) · 1.86 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "nodebots-interchange",
"version": "2.1.3",
"description": "Tool to build custom backpack firmwares to make devices I2C compliant",
"directories": {
"doc": "docs",
"test": "tests"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/?(*.)(spec|test).js?(x)"
],
"collectCoverageFrom": [
"**/*.js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/bin/",
"/coverage/"
]
},
"scripts": {
"test": "TEST=true ./node_modules/.bin/jest",
"lint": "./node_modules/.bin/eslint .",
"coverage": "TEST=true ./node_modules/.bin/jest --collectCoverage=true",
"release": "standard-version"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/ajfisher/nodebots-interchange.git"
},
"keywords": [
"nodebots",
"johnny-five",
"I2C",
"firmware"
],
"author": "Andrew Fisher <[email protected]> (http://github.com/ajfisher)",
"contributors": [
"Suz Hinton (http://github.com/noopkat)",
"Derek Wheelden (http://github.com/frxnz)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ajfisher/nodebots-interchange/issues"
},
"homepage": "https://github.com/ajfisher/nodebots-interchange#readme",
"bin": {
"interchange": "bin/cli.js"
},
"dependencies": {
"async": "^3.1.0",
"avrgirl-arduino": "^5.0.0",
"axios": "^0.27.0",
"colors": "^1.4.0",
"commander": "^9.0.0",
"download": "^8.0.0",
"fs-extra": "^10.0.0",
"inquirer": "^8.0.0",
"lodash": "^4.17.15",
"serialport": "^9.0.0",
"tmp": "^0.2.1"
},
"devDependencies": {
"@serialport/parser-readline": "^9.0.1",
"eslint": "^7.12.0",
"husky": "^8.0.1",
"jest": "^26.6.3",
"standard-version": "^9.0.0"
}
}