forked from nuxt/create-nuxt-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 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
50
{
"name": "create-nuxt-app",
"version": "2.8.0",
"description": "Create a Nuxt.js App in seconds.",
"bin": "cli.js",
"files": [
"cli.js",
"saofile.js",
"template/"
],
"repository": {
"url": "git+https://github.com/nuxt/create-nuxt-app.git",
"type": "git"
},
"scripts": {
"lint": "eslint --ext .js,.mjs,.vue .",
"test": "ava --verbose",
"test:snapshot": "ava --verbose --update-snapshots",
"release": "standard-version"
},
"dependencies": {
"cac": "^6.5.2",
"chalk": "^2.4.2",
"cross-spawn": "^6.0.5",
"glob": "^7.1.3",
"lodash": "^4.17.11",
"sao": "^1.6.1",
"superb": "^2.0.0",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^0.0.1",
"ava": "^1.2.1",
"eslint": "^5.13.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.2.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.1.0",
"standard-version": "^5.0.1"
},
"authors": [
"Egoist <[email protected]>",
"Nuxt team <[email protected]>",
"Clark Du <[email protected]>"
],
"license": "MIT"
}