This repository was archived by the owner on Apr 26, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.31 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.31 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
{
"name": "front-end-styleguide-init",
"version": "2.10.2",
"description": "Templates to create the basic file structure needed for the Front End Styleguide",
"author": {
"name": "Fynn Becker",
"email": "info@fynn-becker.de"
},
"homepage": "https://front-end-style.guide",
"repository": {
"type": "git",
"url": "https://github.com/front-end-styleguide/init"
},
"bugs": {
"url": "https://github.com/front-end-styleguide/init/issues",
"email": "help@front-end-style.guide"
},
"scripts": {
"lint": "stylelint **/*.scss && eslint **/*.js",
"pretest": "npm run lint",
"test": "cd ./test && node ./index.js"
},
"main": "index.js",
"dependencies": {
"chalk": "^2.0.1",
"fs-extra": "^4.0.0",
"git-up": "^2.0.8",
"inquirer": "^3.1.1",
"rimraf": "^2.6.1"
},
"devDependencies": {
"eslint": "^4.1.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-ava": "^4.2.2",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^5.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-testcafe": "^0.2.1",
"stylelint": "^8.0.0",
"stylelint-config-sass-guidelines": "^3.1.0",
"stylelint-config-standard": "^17.0.0"
},
"engines": {
"node": ">= 8.6.0"
},
"license": "GPL-3.0"
}