mirror of
https://github.com/sexybiggetje/pixdisp.git
synced 2024-11-14 17:51:02 +01:00
4ba2b17705
Bumps [vm2](https://github.com/patriksimek/vm2) from 3.9.11 to 3.9.15. - [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.11...3.9.15) --- updated-dependencies: - dependency-name: vm2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
46 lines
1.1 KiB
JSON
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.15",
|
|
"snyk": "^1.1064.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^4.19.1",
|
|
"eslint-plugin-security": "^1.4.0",
|
|
"jest": "^29.3.1"
|
|
},
|
|
"optionalDependencies": {
|
|
"pi-spi": "^1.0.3",
|
|
"jpeg-js": "^0.4.4",
|
|
"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
|
|
}
|