-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·43 lines (43 loc) · 910 Bytes
/
Copy pathpackage.json
File metadata and controls
executable file
·43 lines (43 loc) · 910 Bytes
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
{
"name": "nuxt-csrf",
"version": "0.0.0",
"description": "Add some good old CSRF to your Nuxt app",
"license": "MIT",
"contributors": [
{
"name": "Sam Garson <samtgarson@gmail.com>"
}
],
"main": "lib/module.js",
"repository": "https://github.com/samtgarson/nuxt-csrf",
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint lib test",
"test": "npm run lint && jest",
"release": "standard-version && git push --follow-tags && npm publish"
},
"eslintIgnore": [
"lib/templates/*.*"
],
"files": [
"lib"
],
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"lib",
"test"
]
},
"dependencies": {
"client-sessions": "^0.8.0",
"csrf": "^3.0.6"
},
"devDependencies": {
"nuxt-module-builder": "latest"
}
}