-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
48 lines (48 loc) · 1.21 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
{
"name": "@nuxtjs/redirect-module",
"version": "0.3.1",
"description": "Nuxt module to dynamically redirect initial requests",
"keywords": [
"nuxtjs",
"nuxt",
"redirect",
"seo"
],
"license": "MIT",
"contributors": [
"Alexander Lichter <[email protected]>"
],
"main": "lib/module.js",
"repository": "https://github.com/nuxt-community/redirect-module",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "nuxt test/fixture",
"lint": "eslint lib test",
"test": "yarn lint && jest",
"release": "yarn test && standard-version && git push --follow-tags && npm publish"
},
"files": [
"lib"
],
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@nuxtjs/eslint-config": "^1.1.2",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"codecov": "^3.5.0",
"consola": "^2.10.1",
"eslint": "^6.2.2",
"get-port": "^5.0.0",
"husky": "^3.0.4",
"jest": "^24.9.0",
"nuxt-edge": "^2.10.0-26112969.c14bb35a",
"request": "latest",
"request-promise-native": "^1.0.7",
"standard-version": "^7.0.0"
}
}