2017-12-12 20:41:32 +01:00
|
|
|
{
|
2018-01-05 00:32:48 +01:00
|
|
|
"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",
|
2017-12-12 20:41:32 +01:00
|
|
|
"dependencies": {
|
2019-09-22 23:07:05 +02:00
|
|
|
"restify": "^8.1.0",
|
2019-10-16 23:07:09 +02:00
|
|
|
"vm2": "^3.6.11",
|
2019-12-11 22:07:23 +01:00
|
|
|
"snyk": "^1.258.2"
|
2018-01-05 17:43:52 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-07-03 19:39:50 +02:00
|
|
|
"eslint": "^4.19.1",
|
2018-01-07 09:41:17 +01:00
|
|
|
"eslint-plugin-security": "^1.4.0",
|
2019-10-03 23:07:13 +02:00
|
|
|
"jest": "^24.8.0"
|
2019-07-23 12:38:26 +02:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
|
|
|
"pi-spi": "^1.0.3",
|
|
|
|
"jpeg-js": "^0.3.4",
|
|
|
|
"mjpeg-server": "^0.3.0"
|
2018-01-05 17:43:52 +01:00
|
|
|
},
|
|
|
|
"scripts": {
|
2018-07-03 20:34:21 +02:00
|
|
|
"test": "jest --forceExit",
|
2019-07-03 23:07:16 +02:00
|
|
|
"lint": "./node_modules/.bin/eslint drivers/* controllers/*",
|
|
|
|
"snyk-protect": "snyk protect",
|
|
|
|
"prepare": "npm run snyk-protect"
|
2018-01-05 17:43:52 +01:00
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"name": "pixdisp",
|
2018-01-05 18:25:27 +01:00
|
|
|
"testRegex": "(/__tests__/.[^_]*|(\\.|/)(test|spec))\\.jsx?$",
|
2018-01-05 19:34:03 +01:00
|
|
|
"verbose": true,
|
|
|
|
"collectCoverage": true,
|
|
|
|
"coverageDirectory": "__coverage__",
|
|
|
|
"coverageReporters": [
|
|
|
|
"lcov",
|
|
|
|
"text"
|
|
|
|
],
|
|
|
|
"collectCoverageFrom": [
|
|
|
|
"drivers/**",
|
|
|
|
"controllers/**"
|
|
|
|
]
|
2019-07-03 23:07:16 +02:00
|
|
|
},
|
|
|
|
"snyk": true
|
2017-12-12 20:41:32 +01:00
|
|
|
}
|