-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·49 lines (49 loc) · 1.24 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": "@femessage/nuxt-modularize",
"version": "1.0.0",
"description": "A simple way to separate nuxt as you want",
"license": "MIT",
"author": "Han <[email protected]>",
"bin": {
"nuxt-module": "./bin/command.js"
},
"main": "lib/module.js",
"repository": "https://github.com/FEMessage/nuxt-modularize",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "nuxt example",
"lint": "eslint --ext .js,.vue example lib test",
"test": "yarn lint && jest",
"stdver": "standard-version -m '[skip ci] chore(release): v%s'",
"release": "gren release --override"
},
"files": [
"lib",
"bin"
],
"dependencies": {
"fast-glob": "^3.1.0",
"fs-extra": "^8.1.0"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/preset-env": "latest",
"@femessage/github-release-notes": "^0.19.0",
"@nuxt/cli": "latest",
"@nuxtjs/eslint-config": "latest",
"babel-eslint": "latest",
"babel-jest": "latest",
"codecov": "latest",
"eslint": "latest",
"get-port": "latest",
"husky": "latest",
"jest": "latest",
"nuxt": "latest",
"prompts": "^2.2.1",
"request": "latest",
"request-promise-native": "latest",
"standard-version": "latest"
}
}