This repository has been archived by the owner on Jul 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
74 lines (74 loc) · 2.3 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
{
"name": "dashboard",
"version": "5.14.2",
"description": "Docker dashboard",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"mermaid": "for i in ./docs/architecture/*.mmd; do mmdc -i $i -o $i.png -t neutral; done",
"test": "mocha --reporter mocha-junit-reporter --recursive tests",
"art:pre": "(docker kill bigboat-art-selenium-server; sleep 3; docker run --rm -d --net=host --name=bigboat-art-selenium-server -e SCREEN_WIDTH=1920 -e SCREEN_HEIGHT=1080 selenium/standalone-chrome:3.12)",
"art:exec": "protractor tests/testx/conf.coffee --seleniumAddress=http://localhost:4444/wd/hub",
"art:post": "docker kill bigboat-art-selenium-server",
"art": "run-s art:pre \"art:exec -- {@}\" art:post --",
"release": "./release.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ICTU/docker-dashboard.git"
},
"keywords": [
"docker",
"dashboard"
],
"author": "ICTU",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ICTU/docker-dashboard/issues"
},
"homepage": "https://github.com/ICTU/docker-dashboard#readme",
"dependencies": {
"aglio": "^2.3.0",
"ansi_up": "^1.3.0",
"babel-runtime": "^6.18.0",
"bcrypt": "^0.8.7",
"brace": "^0.8.0",
"bufferutil": "^1.2.1",
"clipboard": "^1.5.10",
"js-yaml": "^3.6.1",
"lodash": "^4.16.4",
"meteor-node-stubs": "^0.2.3",
"mongo-dot-notation": "^1.0.5",
"mqtt": "^2.4.0",
"pretty": "^1.0.0",
"prettysize": "0.0.3",
"react": "^15.0.2",
"react-ace": "^3.6.1",
"react-addons-create-fragment": "^15.0.2",
"react-addons-css-transition-group": "^15.0.2",
"react-addons-linked-state-mixin": "^15.0.2",
"react-addons-perf": "^15.0.2",
"react-addons-pure-render-mixin": "^15.0.2",
"react-addons-test-utils": "^15.0.2",
"react-addons-transition-group": "^15.0.2",
"react-addons-update": "^15.0.2",
"react-dom": "^15.0.2",
"utf-8-validate": "^1.2.1"
},
"devDependencies": {
"mermaid.cli": "^0.4.6",
"coffee-script": "^1.12.4",
"npm-run-all": "^4.0.2",
"protractor": "^5.1.1",
"semver": "^5.3.0",
"testx": "^2.9.2",
"testx-http-keywords": "^0.12.0",
"testx-jasmine-reporters": "^1.1.1"
},
"testx": {
"logScript": false,
"actionTimeout": 10000
}
}