This repository has been archived by the owner on Sep 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
87 lines (87 loc) · 2.19 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "generator-baukasten",
"version": "4.3.8",
"description": "A little 'Baukasten' for your next project to gettings shit done. It's focused on Craft CMS but there is also a bit WordPress stuff on board.",
"main": "generators/app/index.js",
"scripts": {
"test": "jest",
"eslint": "eslint ./generators/app/index.js, ./generators/app/**/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/davidhellmann/generator-baukasten.git"
},
"keywords": [
"yeoman-generator",
"boilerplate",
"gulp",
"yeoman",
"sass",
"scss",
"craft-cms",
"wordpress",
"laravel"
],
"author": {
"name": "David Hellmann",
"email": "[email protected]",
"homepage": "https://davidhellmann.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/davidhellmann/generator-baukasten/issues"
},
"jest": {
"testEnvironment": "node",
"setupTestFrameworkScriptFile": "./jestSetup.js"
},
"eslintConfig": {
"extends": "airbnb",
"env": {
"jest": true,
"node": true
}
},
"files": [
"generators"
],
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"chalk": "^1.1.3",
"clear-terminal": "^0.0.2",
"command-exists": "^1.2.8",
"deep-extend": "^0.6.0",
"download": "^6.2.2",
"fs-extra": "^4.0.2",
"glob": "^7.1.3",
"inquirer": "^3.3.0",
"mem-fs": "^1.1.3",
"mem-fs-editor": "^3.0.2",
"mkdirp": "^0.5.1",
"path": "^0.12.7",
"pleasant-progress": "^1.1.0",
"progress": "^2.0.3",
"yeoman-generator": "^2.0.5",
"yosay": "^2.0.2"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-vue": "^2.0.2",
"eslint-config-xo-space": "^0.16.0",
"eslint-plugin-html": "^3.2.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-vue": "^3.13.1",
"jest": "^21.2.1",
"jest-cli": "^21.2.1",
"nsp": "^2.8.1",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^1.9.1"
},
"homepage": "https://github.com/davidhellmann/generator-baukasten#readme"
}