-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
74 lines (74 loc) · 1.92 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
{
"name": "drizzle",
"version": "0.0.1-alpha",
"private": true,
"author": "Cloud Four",
"description": "A pattern library authoring environment",
"homepage": "https://github.com/cloudfour/drizzle",
"license": "MIT",
"keywords": [
"pattern",
"styleguide",
"component",
"framework",
"boilerplate",
"html",
"ui",
"css",
"bem",
"typography"
],
"repository": {
"type": "git",
"url": "https://github.com/cloudfour/drizzle.git"
},
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"@cloudfour/eslint-config": "^1.0.0",
"@cloudfour/gulp-tasks": "^2.0.1",
"@cloudfour/hbs-helpers": "^0.6.1",
"babel-core": "^6.7.6",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"doctoc": "^1.1.1",
"drizzle-builder": "0.0.10",
"eslint": "^5.0.1",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-plugin-unicorn": "^4.0.3",
"gulp": "^3.9.1",
"gulp-gh-pages": "^0.5.4",
"gulp-util": "^3.0.7",
"postcss-cssnext": "^2.5.2",
"prettier": "^1.13.7",
"prismjs": "^1.4.1",
"suitcss-base": "^2.0.0",
"suitcss-components-arrange": "^1.1.1",
"suitcss-components-button": "^5.0.0",
"suitcss-components-grid": "^3.0.2",
"suitcss-utils": "^1.0.0"
},
"scripts": {
"prestart": "npm install",
"start": "gulp --dev",
"build": "npm run prestart && gulp",
"docs": "doctoc --title \"### Contents\" --maxlevel 2 docs/README.md",
"check-lint": "prettier --list-different '**/*.js' && eslint '**/*.js'",
"lint": "prettier --write '**/*.js' && eslint --fix '**/*.js'"
},
"eslintConfig": {
"extends": "@cloudfour/eslint-config"
},
"eslintIgnore": [
"dist"
],
"prettier": {
"singleQuote": true
}
}