-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·71 lines (71 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·71 lines (71 loc) · 1.77 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "nuxt-csrf",
"version": "1.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": {
"dev": "nuxt example",
"lint": "eslint lib test",
"test": "npm run lint && jest",
"release": "standard-version && git push --follow-tags && npm publish"
},
"eslintIgnore": [
"node_modules",
".nuxt",
"lib/plugin.js"
],
"files": [
"lib"
],
"jest": {
"testEnvironment": "node",
"collectCoverage": false,
"moduleNameMapper": {
"^~/(.*)$": "<rootDir>/lib/$1",
"^~~$": "<rootDir>",
"^@@$": "<rootDir>",
"^@/(.*)$": "<rootDir>/example/$1"
},
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
}
},
"dependencies": {
"client-sessions": "^0.8.0",
"csrf": "^3.0.6"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/preset-env": "latest",
"@nuxtjs/eslint-config": "latest",
"babel-eslint": "latest",
"babel-jest": "latest",
"codecov": "latest",
"eslint": "latest",
"eslint-config-standard": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-jest": "latest",
"eslint-plugin-node": "latest",
"eslint-plugin-promise": "latest",
"eslint-plugin-standard": "latest",
"eslint-plugin-vue": "latest",
"get-port": "latest",
"jest": "latest",
"node-fetch": "^2.3.0",
"nuxt-edge": "^2.6.0-25901287.3eec1152",
"request": "latest",
"standard-version": "latest",
"vue-jest": "latest"
}
}