-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.13 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
{
"name": "angular-mew",
"version": "0.2.0",
"description": "An angular wrapper for the Hawk HTTP authentication scheme",
"keywords": [
"angular",
"angular-mew",
"authentication",
"hawk"
],
"homepage": "https://github.com/Sonaryr/angular-mew",
"repository": {
"type": "git",
"url": "https://github.com/Sonaryr/angular-mew.git"
},
"author": "Maarten Schroeven <maarten@sonaryr.be>",
"license": "MIT",
"scripts": {
"build": "./node_modules/gulp/bin/gulp.js default",
"test": "npm run build && ./node_modules/karma/bin/karma start karma.unit.conf.js",
"coverage": " npm run build &&./node_modules/karma/bin/karma start karma.coverage.conf.js"
},
"dependencies": {
"hawk": "^4.1.2"
},
"devDependencies": {
"angular": "^1.5.3",
"angular-mocks": "^1.5.3",
"gulp": "^3.9.1",
"gulp-clean": "^0.3.2",
"gulp-concat": "^2.6.0",
"gulp-header": "^1.7.1",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.5.3",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-coverage": "^0.5.5",
"karma-jasmine": "^0.3.8"
}
}