forked from kwk/docker-registry-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.49 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "docker-registry-frontend",
"description": "A pure web-based frontend to a docker-registry",
"version": "0.0.2",
"author": "Konrad Kleine",
"license": "MIT",
"keywords": [
"docker",
"registry",
"frontend",
"ui"
],
"main": "Gruntfile.js",
"directories": {
"test": "test"
},
"engines": {
"node": ">=0.10.0"
},
"repository": {
"type": "git",
"url": "[email protected]:kwk/docker-registry-frontend.git"
},
"bugs": {
"url": "https://github.com/kwk/docker-registry-frontend/issues"
},
"scripts": {
"start": "grunt serve",
"pretest": "npm install",
"test": "karma start test/karma.conf.js",
"test-single-run": "karma start test/karma.conf.js --single-run"
},
"dependencies": {
"angular": "~1.3.0",
"angular-animate": "~1.3.0",
"angular-bootstrap-checkbox": "~0.5.0",
"angular-cookies": "~1.3.0",
"angular-filter": "~0.5.2",
"angular-loading-bar": "~0.6.0",
"angular-moment": "~0.8.2",
"angular-resource": "~1.3.0",
"angular-route": "~1.3.0",
"angular-sanitize": "~1.3.0",
"angular-smart-table": "~1.4.12",
"angular-touch": "~1.3.0",
"angular-ui-bootstrap": "~0.13.0",
"bootstrap": "3.3.4",
"es5-shim": "~3.2.0",
"jquery": "^2.1.4",
"json3": "~3.3.1",
"toastr": "~2.0.3"
},
"devDependencies": {
"angular-mocks": "~1.3.0",
"angular-scenario": "~1.3.0",
"connect-modrewrite": "^0.8.2",
"grunt": "^0.4.1",
"grunt-autoprefixer": "^3.0.3",
"grunt-cli": "^0.1.13",
"grunt-concurrent": "^2.1.0",
"grunt-connect-proxy": "^0.2.0",
"grunt-contrib-clean": "^0.7.0",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-connect": "^0.10.1",
"grunt-contrib-copy": "^0.8.2",
"grunt-contrib-cssmin": "^0.14.0",
"grunt-contrib-htmlmin": "^0.6.0",
"grunt-contrib-imagemin": "^1.0.0",
"grunt-contrib-jshint": "^0.12.0",
"grunt-contrib-uglify": "^0.11.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-filerev": "^2.3.1",
"grunt-google-cdn": "^0.4.3",
"grunt-newer": "^1.1.1",
"grunt-ng-annotate": "^1.0.1",
"grunt-svgmin": "^3.1.2",
"grunt-usemin": "^3.1.1",
"grunt-wiredep": "^2.0.0",
"jasmine": "^2.4.1",
"jasmine-core": "^2.4.1",
"jshint-stylish": "^2.1.0",
"karma": "^1.1.1",
"karma-jasmine": "^1.0.2",
"karma-junit-reporter": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.1",
"karma-spec-reporter": "0.0.26",
"load-grunt-tasks": "^3.4.0",
"time-grunt": "^1.3.0"
}
}