1
0
Fork 0
mirror of https://github.com/sexybiggetje/pixdisp.git synced 2024-11-14 06:31:02 +01:00
pixdisp/package.json
dependabot[bot] 9934d0f1be
build(deps): bump vm2 from 3.9.4 to 3.9.6
Bumps [vm2](https://github.com/patriksimek/vm2) from 3.9.4 to 3.9.6.
- [Release notes](https://github.com/patriksimek/vm2/releases)
- [Changelog](https://github.com/patriksimek/vm2/blob/master/CHANGELOG.md)
- [Commits](https://github.com/patriksimek/vm2/compare/3.9.4...3.9.6)

---
updated-dependencies:
- dependency-name: vm2
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-02-15 00:46:13 +00:00

46 lines
1.1 KiB
JSON

{
"name": "pixdisp",
"description": "Little application to drive Led matrix displays on your raspberry pi",
"repository": {
"type": "git",
"url": "https://github.com/sexybiggetje/pixdisp.git"
},
"license": "MIT",
"dependencies": {
"restify": "^8.1.1",
"vm2": "^3.9.6",
"snyk": "^1.685.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-plugin-security": "^1.4.0",
"jest": "^24.8.0"
},
"optionalDependencies": {
"pi-spi": "^1.0.3",
"jpeg-js": "^0.4.0",
"mjpeg-server": "^0.3.0"
},
"scripts": {
"test": "jest --forceExit",
"lint": "./node_modules/.bin/eslint drivers/* controllers/*",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"jest": {
"name": "pixdisp",
"testRegex": "(/__tests__/.[^_]*|(\\.|/)(test|spec))\\.jsx?$",
"verbose": true,
"collectCoverage": true,
"coverageDirectory": "__coverage__",
"coverageReporters": [
"lcov",
"text"
],
"collectCoverageFrom": [
"drivers/**",
"controllers/**"
]
},
"snyk": true
}