forked from alferov/angular-file-saver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.74 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
{
"name": "mc-angular-file-saver",
"version": "1.1.8",
"description": "An AngularJS service that implements the HTML5 W3C saveAs() in browsers that do not natively support it",
"repository": {
"type": "git",
"url": "https://github.com/CheungJ/mc-angular-file-saver.git"
},
"main": "dist/angular-file-saver.bundle.js",
"keywords": [
"filesaver",
"angular",
"blob",
"save",
"file"
],
"author": "Philipp Alferov",
"license": "MIT",
"bugs": {
"url": "https://github.com/CheungJ/mc-angular-file-saver/issues"
},
"homepage": "https://github.com/CheungJ/mc-angular-file-saver",
"dependencies": {
"file-saver": "1.3.2"
},
"devDependencies": {
"angular": "^1.4.5",
"angular-mocks": "^1.4.5",
"babel-core": "^6.10.4",
"babel-preset-es2015": "^6.9.0",
"browser-filesaver": "^1.0.0",
"browser-sync": "^2.8.2",
"eslint": "^1.3.1",
"gulp": "^3.9.0",
"gulp-bump": "^0.3.1",
"gulp-concat": "^2.6.0",
"gulp-gh-pages": "^0.5.2",
"gulp-git": "^1.2.4",
"gulp-if": "^1.2.5",
"gulp-inject": "^1.5.0",
"gulp-load-plugins": "^0.10.0",
"gulp-markdown": "^1.0.0",
"gulp-plumber": "^1.0.1",
"gulp-rename": "^1.2.2",
"gulp-size": "^1.3.0",
"gulp-uglify": "^1.2.0",
"gulp-util": "^3.0.6",
"husky": "^0.9.3",
"jasmine-core": "^2.3.4",
"karma": "^0.13.9",
"karma-chrome-launcher": "^0.2.0",
"karma-firefox-launcher": "^0.1.6",
"karma-jasmine": "^0.3.6",
"karma-webpack": "^1.7.0",
"run-sequence": "^1.1.2",
"webpack-stream": "^3.1.0"
},
"engines": {
"node": ">=0.12"
},
"scripts": {
"precommit": "gulp build",
"test": "./node_modules/.bin/karma start karma.conf.js --single-run --browsers Firefox"
}
}