-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.22 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
{
"name": "micro-csrf",
"version": "1.0.2",
"description": "Anti-CSRF middleware for micro",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"test": "jest",
"prepare": "npm run build",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fourcube/micro-csrf.git"
},
"keywords": [
"micro",
"csrf",
"express"
],
"author": "Chris Grieger <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fourcube/micro-csrf/issues"
},
"homepage": "https://github.com/fourcube/micro-csrf#readme",
"devDependencies": {
"@types/csrf": "^1.3.2",
"@types/jest": "^24.0.21",
"@types/micro": "^7.3.3",
"@types/node": "^13.9.0",
"@types/request-promise": "^4.1.44",
"@types/test-listen": "^1.1.0",
"jest": "^24.9.0",
"micro": "^9.3.4",
"request-promise": "^4.2.4",
"test-listen": "^1.1.0",
"ts-jest": "^24.1.0",
"typescript": "^3.7.0"
},
"files": [
"lib"
],
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": "^.+\\.spec\\.ts$"
},
"dependencies": {
"csrf": "^3.1.0"
}
}