-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
48 lines (48 loc) · 1.52 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
{
"name": "foxbox",
"version": "1.0.0",
"description": "The FoxBox daemon",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"test-selenium": "./tools/execute-selenium-tests.sh",
"test-integration": "npm run clean && ./node_modules/.bin/mocha test/integration/test/*.js && ./node_modules/.bin/mocha test/integration/test/no_travis/*.js",
"test-integration-travis": "npm run clean && ./node_modules/.bin/mocha test/integration/test/*.js",
"clean": "npm run clean_db && npm run clean_picture",
"clean_db": "rm -rf ~/.local/share/foxbox",
"clean_picture": "rm -rf ~/.local/share/foxbox/snapshots"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fxbox/foxbox.git"
},
"author": "The FoxLink Team",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/fxbox/foxbox/issues"
},
"homepage": "https://github.com/fxbox/foxbox",
"devDependencies": {
"body-parser": "^1.15.0",
"callsite": "^1.0.0",
"chai": "^3.5.0",
"chakram": "^1.2.2",
"config-js": "^1.1.9",
"express": "^4.13.4",
"find": "^0.2.4",
"http_ece": "^0.5.0",
"iso-date": "^1.0.0",
"jshint": "2.9.1",
"media-typer": "^0.3.0",
"mocha": "2.4.5",
"node-ssdp": "^2.7.0",
"path": "^0.12.7",
"raw-body": "^2.1.6",
"selenium-webdriver": "https://github.com/JohanLorenzo/selenium/releases/download/2.54.0-dev/selenium-webdriver-2.54.0-dev.tgz",
"should": "^8.2.2",
"socket.io": "^1.4.5",
"supertest": "^1.2.0",
"urlsafe-base64": "^1.0.0"
}
}