forked from potato4d/nuxt-basic-auth-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 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
{
"name": "nuxt-basic-auth-module",
"version": "1.3.3",
"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.5",
"codecov": "3.8.1",
"jest": "26.6.3",
"jsdom": "16.5.0",
"nuxt": "2.15.3",
"prettier": "2.2.1",
"puppeteer": "8.0.0",
"standard-version": "9.1.1"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"lib/**/*.{js,jsx}"
]
},
"dependencies": {
"basic-auth": "^2.0.1",
"consola": "^2.3.2"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}