-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.01 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.01 KB
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
{
"name": "jquery-csrf-token",
"version": "2.2.1",
"author": "Kees Kluskens <kees@codeyellow.nl>",
"description": "Add a X-CSRF-TOKEN and X-CSRFToken header to each AJAX request.",
"repository": {
"type": "git",
"url": "https://github.com/CodeYellowBV/jquery-csrf-token"
},
"bugs": {
"url": "https://github.com/CodeYellowBV/jquery-csrf-token/issues"
},
"keywords": [
"jquery",
"csrf"
],
"license": "ISC",
"main": "dist/jquery-csrf-token.js",
"files": [
"dist/**"
],
"devDependencies": {
"ava": "^0.17.0",
"babel-preset-es2015-rollup": "^3.0.0",
"eslint": "^3.12.2",
"eslint-config-codeyellow": "^2.0.0",
"jquery": "2.2.4",
"jsdom": "^9.9.1",
"rollup": "^0.39.2",
"rollup-plugin-babel": "^2.7.1"
},
"scripts": {
"lint": "eslint index.js && echo 'Linting succeeded.'",
"build": "rm -f dist/** && node build.js",
"pretest": "npm run -s build && npm run -s lint",
"test": "ava test.js",
"preversion": "npm run -s test"
}
}