This repository has been archived by the owner on Oct 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
98 lines (98 loc) · 3.02 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
91
92
93
94
95
96
97
98
{
"name": "img.bi-server",
"version": "0.0.2",
"description": "[img.bi](https://img.bi/) is a secure image hosting. Images are encrypted using AES-256 with random key in browser before upload.",
"homepage": "https://img.bi",
"keywords": [
"image hosting",
"image",
"images",
"encryption",
"security",
"hosting"
],
"main": "./cli.js",
"bin": {
"imgbi-server": "./cli.js",
"imgbi-migrate": "./scripts/migrate.js"
},
"scripts": {
"test": "./node_modules/jshint/bin/jshint *.js backend/**/*.js frontend/**/*.js tests/**/*.js && ./node_modules/jsonlint/lib/cli.js -q package.json && ./node_modules/jsonlint/lib/cli.js -q config-fontello.json && ./node_modules/jsonlint/lib/cli.js -q frontend/languages.json && ./node_modules/jsonlint/lib/cli.js -q config.json && ./node_modules/jsonlint/lib/cli.js -q commands.json && ./node_modules/karma/bin/karma start karma.conf.js && ./node_modules/mocha/bin/mocha tests/backend/*.tests.js && node_modules/jscs/bin/jscs *.js backend/**/*.js frontend/**/*.js tests/**/*.js",
"prepublish": "node ./scripts/generate-manpage.js"
},
"man": "./imgbi-server.1",
"devDependencies": {
"angular-mocks": "^1.4.8",
"expect": "^1.13.4",
"fakeredis": "^1.0.2",
"jasmine-core": "^2.4.1",
"jscs": "^2.8.0",
"jshint": "^2.9.1-rc3",
"jsonlint": "^1.6.2",
"karma": "^0.13.19",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^0.2.3",
"karma-spec-reporter": "0.0.23",
"man-api": "^0.3.1",
"mocha": "^2.3.4",
"mock-fs": "^3.6.0",
"mockery": "^1.4.0",
"phantomjs": "^1.9.19",
"sinon": "^1.17.2"
},
"repository": {
"type": "git",
"url": "https://github.com/imgbi/img.bi.git"
},
"author": {
"name": "Anton Nesterov",
"email": "[email protected]",
"url": "https://nesterov.pw"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/imgbi/img.bi/issues",
"email": "[email protected]"
},
"dependencies": {
"angular": "^1.4.8",
"angular-gettext": "^2.2.0",
"angular-route": "^1.4.8",
"angular-strap": "^2.3.6",
"async": "^1.5.2",
"base-x": "^1.0.1",
"bcrypt": "^0.8.5",
"bootstrap": "^3.3.6",
"cli": "^0.11.1",
"clipboard": "^1.5.5",
"compression": "^1.6.0",
"debug": "^2.2.0",
"event-stream": "^3.3.2",
"express": "^4.13.3",
"express-formidable": "^0.1.2",
"express-validator": "^2.18.0",
"gulp": "^3.9.0",
"gulp-angular-gettext": "^2.1.0",
"gulp-cached": "^1.1.0",
"gulp-concat": "^2.6.0",
"gulp-favicons": "^2.2.5",
"gulp-if": "^2.0.0",
"gulp-jade": "^1.1.0",
"gulp-less": "^3.0.5",
"gulp-newer": "^1.1.0",
"gulp-ng-constant": "^1.1.0",
"gulp-param": "^0.6.4",
"gulp-remember": "^0.3.0",
"gulp-rename": "^1.2.2",
"gulp-runner": "^0.1.4",
"gulp-sharp": "^0.1.0",
"gulp-uglify": "^1.5.1",
"hashids": "1.0.2",
"hiredis": "^0.4.1",
"mkdirp": "^0.5.1",
"redis": "^2.4.2",
"sjcl": "^1.0.3",
"streamqueue": "^1.1.1",
"validator": "^4.5.0"
}
}