-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.07 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"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
}