mirror of
https://github.com/sexybiggetje/pixdisp.git
synced 2024-11-14 07:41:03 +01:00
be299bf814
Removes [jsdom](https://github.com/jsdom/jsdom). It's no longer used after updating ancestor dependency [jest](https://github.com/facebook/jest/tree/HEAD/packages/jest). These dependencies need to be updated together. Removes `jsdom` Updates `jest` from 24.8.0 to 29.3.1 - [Release notes](https://github.com/facebook/jest/releases) - [Changelog](https://github.com/facebook/jest/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/jest/commits/v29.3.1/packages/jest) --- updated-dependencies: - dependency-name: jsdom dependency-type: indirect - dependency-name: jest dependency-type: direct:development ... 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.6",
|
|
"snyk": "^1.685.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
|
|
}
|