-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.13 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
{
"name": "openframe-vlc",
"version": "0.1.1",
"description": "Openframe extension which adds support for VLC",
"main": "extension.js",
"scripts": {
"install": "./install.sh",
"unistall": "./unistall.sh",
"lint": "./node_modules/.bin/eslint extension.js test/**",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"test": "npm run lint && ./node_modules/.bin/nyc ./node_modules/.bin/_mocha",
"test-coveralls": "npm run lint && ./node_modules/.bin/nyc ./node_modules/.bin/_mocha --report lcovonly -- -R spec && npm run coveralls"
},
"keywords": [
"vlc",
"video",
"photo",
"openframe",
"raspberry-pi",
"art",
"artwork",
"frame"
],
"author": {
"name": "Jeremias Volker",
"url": "http://jeremiasvolker.com"
},
"license": "MIT",
"devDependencies": {
"coveralls": "^3.0.7",
"eslint": "^4.0.0",
"mocha": "^6.2.2"
},
"dependencies": {
"debug": "^4.1.1",
"nyc": "^14.1.1",
"openframe-extension": "^0.1.0"
},
"repository": {
"type": "git",
"url": "github:jvolker/Openframe-VLC"
}
}