-
Notifications
You must be signed in to change notification settings - Fork 416
/
package.json
34 lines (34 loc) · 1.04 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
{
"name": "angular-http-auth",
"version": "1.5.0",
"description": "HTTP Auth Interceptor Module for AngularJS.",
"main": "src/http-auth-interceptor.js",
"repository": {
"type": "git",
"url": "https://github.com/witoldsz/angular-http-auth.git"
},
"author": "Witold Szczerba",
"license": "MIT",
"bugs": {
"url": "https://github.com/witoldsz/angular-http-auth/issues"
},
"keywords": [
"angular",
"auth"
],
"homepage": "https://github.com/witoldsz/angular-http-auth",
"devDependencies": {
"mkdirp": "^0.5.1",
"rimraf": "^2.5.4",
"uglifyjs": "^2.4.10"
},
"scripts": {
"clean": "rimraf dist/*",
"prebuild": "npm run clean -s && mkdirp dist",
"build": "npm run build:minify -s && npm run build:copy -s",
"build:minify": "uglifyjs src/http-auth-interceptor.js -o dist/http-auth-interceptor.min.js -c",
"build:copy": "cat src/http-auth-interceptor.js > dist/http-auth-interceptor.js",
"version": "npm run build && git add -A dist",
"postversion": "git push && git push --tags"
}
}