This repository has been archived by the owner on Oct 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
94 lines (94 loc) · 2.59 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
{
"name": "s3commander",
"version": "0.13.0",
"description": "web based object storage file browser",
"homepage": "https://github.com/nimbis/s3commander",
"license": "SEE LICENSE IN LICENSE.txt",
"dependencies": {
"angular": "^1.7.8",
"aws-sdk": "^2.434.0",
"crypto-js": "^3.1.9-1"
},
"devDependencies": {
"@types/angular": "^1.6.54",
"@types/angular-mocks": "^1.7.0",
"@types/angular-ui-router": "^1.1.36",
"@types/dropzone": "^5.0.4",
"@types/es6-shim": "^0.31.39",
"@types/jasmine": "^2.8.16",
"@types/jquery": "^2.0.53",
"@types/node": "^7.10.5",
"angular-mocks": "^1.7.8",
"autoprefixer": "^6.7.3",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.3.2",
"browser-sync": "^2.26.3",
"browser-sync-spa": "^1.0.3",
"css-loader": "^2.1.1",
"del": "^2.2.2",
"dropzone": "^5.5.1",
"es6-shim": "^0.35.5",
"eslint": "^3.15.0",
"eslint-config-angular": "^0.5.0",
"eslint-config-xo-space": "^0.15.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-angular": "^1.6.1",
"eslint-plugin-babel": "^4.0.1",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"gulp": "^4.0.0",
"gulp-angular-filesort": "^1.2.1",
"gulp-angular-templatecache": "^2.2.6",
"gulp-filter": "^5.0.0",
"gulp-htmlmin": "^3.0.0",
"gulp-hub": "^4.2.0",
"gulp-insert": "^0.5.0",
"gulp-ng-annotate": "^2.0.0",
"gulp-tslint": "^8.1.4",
"gulp-util": "^3.0.8",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.28.0",
"jasmine": "^2.5.3",
"json-loader": "^0.5.4",
"karma": "^4.0.1",
"karma-angular-filesort": "^1.0.2",
"karma-coverage": "^1.1.2",
"karma-es6-shim": "^1.0.0",
"karma-jasmine": "^1.1.2",
"karma-junit-reporter": "^1.2.0",
"karma-ng-html2js-preprocessor": "^1.0.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-phantomjs-shim": "^1.4.0",
"karma-webpack": "^2.0.13",
"ng-annotate-loader": "^0.2.0",
"phantomjs-prebuilt": "^2.1.14",
"postcss-loader": "^1.3.1",
"style-loader": "^0.13.1",
"ts-loader": "^2.0.0",
"tslint": "^5.15.0",
"tslint-loader": "^3.6.0",
"typescript": "^2.9.2",
"webpack": "^2.2.1",
"webpack-fail-plugin": "^1.0.5"
},
"scripts": {
"build": "gulp",
"serve": "gulp serve",
"serve:dist": "gulp serve:dist",
"test": "gulp test",
"test:auto": "gulp test:auto"
},
"eslintConfig": {
"globals": {
"expect": true
},
"root": true,
"env": {
"browser": true,
"jasmine": true
},
"parser": "babel-eslint",
"extends": [
"xo-space/esnext"
]
}
}