47 lines
1.1 KiB
JSON
47 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.0",
|
|
"vm2": "^3.6.11",
|
|
"snyk": "^1.230.5"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^4.19.1",
|
|
"eslint-plugin-security": "^1.4.0",
|
|
"jest": "^24.8.0"
|
|
},
|
|
"optionalDependencies": {
|
|
"pi-spi": "^1.0.3",
|
|
"jpeg-js": "^0.3.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
|
|
}
|