-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
51 lines (51 loc) · 1.28 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
{
"name": "nuxt-basic-auth-module",
"version": "1.4.1",
"description": "Provide basic authentication to your Nuxt.js application",
"keywords": [
"vue",
"nuxt",
"nuxt.js",
"basic auth",
"authentication"
],
"main": "lib/module.js",
"types": "./types/index.d.ts",
"license": "MIT",
"repository": "https://github.com/potato4d/nuxt-basic-auth-module",
"scripts": {
"dev": "nuxt test/fixture",
"test": "jest",
"test:unit": "jest --testRegex \"/test/unit/(.+)\\.test\\.js$\"",
"test:system": "jest --testRegex \"/test/system/(.+)\\.test\\.js$\"",
"test:coverage": "yarn test --coverage",
"release": "standard-version && git push --follow-tags",
"format": "prettier './{lib,test}/**/*.js' --write"
},
"devDependencies": {
"cheerio": "1.0.0-rc.12",
"codecov": "3.8.3",
"jest": "28.1.3",
"jsdom": "19.0.0",
"nuxt": "2.15.8",
"prettier": "2.7.1",
"puppeteer": "13.7.0",
"request": "2.88.2",
"request-promise-native": "1.0.9",
"standard-version": "9.5.0"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"lib/**/*.{js,jsx}"
]
},
"dependencies": {
"basic-auth": "^2.0.1",
"consola": "^2.3.2"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}