-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
46 lines (46 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
{
"name": "@nuxtjs/router",
"version": "1.7.0",
"description": "Nuxt.js module to use router.js instead of pages/ directory",
"repository": "nuxt-community/router-module",
"license": "MIT",
"contributors": [
"Sebastien Chopin <[email protected]>",
"Ricardo Gobbo de Souza <[email protected]>"
],
"main": "./dist/module.js",
"types": "./dist/module.d.ts",
"files": [
"dist",
"templates"
],
"scripts": {
"build": "siroc build",
"prepublishOnly": "yarn build",
"dev": "nuxt dev test/fixture/ok",
"lint": "eslint --ext .js,.ts,.vue .",
"release": "yarn test && yarn build && standard-version && git push --follow-tags && npm publish",
"test": "yarn lint && yarn jest"
},
"dependencies": {
"consola": "^2.15.3",
"defu": "^5.0.0"
},
"devDependencies": {
"@babel/preset-typescript": "latest",
"@nuxt/test-utils": "latest",
"@nuxt/types": "latest",
"@nuxtjs/eslint-config-typescript": "latest",
"@types/jest": "latest",
"@types/node": "latest",
"del": "latest",
"eslint": "latest",
"jest": "latest",
"nuxt": "latest",
"siroc": "latest",
"standard-version": "latest"
},
"publishConfig": {
"access": "public"
}
}