-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
76 lines (76 loc) · 2.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "openframe",
"version": "0.4.12",
"description": "Openframe controller process which runs on the machine controlling the frame.",
"main": "index.js",
"scripts": {
"start": "node ./bin/cli.js",
"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/istanbul cover ./node_modules/.bin/_mocha",
"test-coveralls": "npm run lint && ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec && npm run coveralls",
"patch-release": "npm version patch && npm publish && git push origin --follow-tags",
"install": "./install.sh"
},
"bin": {
"openframe": "./bin/cli.js"
},
"preferGlobal": true,
"author": {
"name": "Jonathan Wohl",
"url": "http://jonathanwohl.com"
},
"contributors": [
{
"name": "Jonathan Wohl",
"url": "http://jonathanwohl.com"
},
{
"name": "Ishac Bertran",
"url": "http://ishacbertran.com"
}
],
"license": "GPL-3.0",
"dependencies": {
"chalk": "^2.4.2",
"cli-spinner": "^0.2.4",
"commander": "^2.8.1",
"debug": "^2.2.0",
"faye": "^1.1.2",
"http-status": "^1.3.2",
"humanize-duration": "^3.21.0",
"inquirer": "^0.11.1",
"jsonfile": "^2.2.1",
"mkdirp": "^0.5.1",
"pretty-bytes": "^5.3.0",
"request": "^2.88.0",
"request-progress": "^3.0.0",
"requireg": "^0.2.2",
"shelljs": "^0.7.0",
"single-line-log": "^1.1.2",
"swagger-client": "^2.1.9"
},
"devDependencies": {
"openframe-glslviewer": "*",
"openframe-image": "*",
"openframe-website": "*",
"openframe-video": "*",
"coveralls": "^2.11.9",
"eslint": "^6.8.0",
"istanbul": "^0.4.2",
"mocha": "^2.3.4",
"sinon": "^1.17.2",
"npm": "^6.14.6"
},
"keywords": [
"openframe",
"raspberry-pi",
"art",
"artwork",
"frame"
],
"repository": {
"type": "git",
"url": "https://github.com/OpenframeProject/Openframe"
}
}