-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 936 Bytes
/
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
{
"name": "csrf-meta-interceptor",
"version": "1.0.1",
"description": "A small and simple $http interceptor that reads a CSRF token from an html meta element named _csrf and sends the value as http header (name defined as html meta element named _csrf_header) when using POST, PUT or DELETE",
"main": "src/csrfMetaInterceptor.js",
"scripts": {
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ckatzorke/csrf-meta-interceptor.git"
},
"keywords": [
"csrf",
"spring",
"AngluarJS"
],
"author": "Christian Katzorke <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ckatzorke/csrf-meta-interceptor/issues"
},
"homepage": "https://github.com/ckatzorke/csrf-meta-interceptor#readme",
"devDependencies": {
"gulp": "^3.9.0",
"gulp-eslint": "^1.0.0",
"gulp-rimraf": "^0.2.0",
"gulp-uglify": "^1.4.2"
}
}