-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.59 KB
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
51
52
53
54
55
56
57
58
59
60
{
"name": "nuxtapose",
"version": "0.0.1-beta.0.1.5",
"description": "Generate Files For Nuxt Projects",
"keywords": [
"nuxt",
"cli",
"template",
"generator"
],
"repository": {
"type": "git",
"url": "https://github.com/aturingmachine/nuxtapose"
},
"homepage": "https://aturingmachine.github.io/nuxtapose/",
"license": "MIT",
"files": [
"dist/"
],
"main": "dist/index.js",
"bin": "dist/index.js",
"scripts": {
"build": "sh ./scripts/build.sh",
"compile": "tsc",
"dev": "npm run compile && node dist/index.js",
"lint": "eslint --max-warnings 0 'src/**'",
"lint:fix": "eslint --fix --max-warnings 0 'src/**'",
"test": "jest",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:publish": "./scripts/deploy-docs.sh",
"prepublishOnly": "npm run build"
},
"dependencies": {
"chalk": "^4.1.1",
"cli-table": "^0.3.6",
"commander": "^8.1.0",
"figlet": "^1.5.0",
"inquirer": "^8.1.2"
},
"devDependencies": {
"@nuxt/types": "^2.15.8",
"@types/cli-table": "^0.3.0",
"@types/figlet": "^1.5.4",
"@types/inquirer": "^7.3.3",
"@types/jest": "^27.0.1",
"@types/node": "^15.12.4",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.29.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"prettier": "2.3.1",
"ts-jest": "^27.0.5",
"typescript": "^4.3.5",
"vuepress": "^1.8.2",
"vuepress-theme-default-prefers-color-scheme": "^2.0.0"
}
}