This repository was archived by the owner on Nov 1, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·57 lines (57 loc) · 1.44 KB
/
package.json
File metadata and controls
executable file
·57 lines (57 loc) · 1.44 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
{
"name": "@buildit/patternlab-base-toolkit",
"description": "A gulp based node edition of PatternLab. It provides the core of the library with some enhancements.",
"version": "1.1.0",
"dependencies": {
"browser-sync": "^2.23.3",
"chalk": "^1.1.3",
"gulp": "^4.0.0",
"gulp-autoprefixer": "^4.1.0",
"gulp-concat": "^2.6.1",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.6.3",
"gulp-stylelint": "^3.9.0",
"minimist": "^1.2.0",
"normalize-scss": "^7.0.0",
"patternlab-node": "^2.12.0",
"styleguidekit-assets-default": "^3.5.2",
"styleguidekit-mustache-default": "^3.0.0"
},
"keywords": [
"Pattern Lab",
"Atomic Web Design",
"Node",
"Gulp",
"Javascript",
"sass",
"scss"
],
"repository": {
"type": "git",
"url": "git@github.com:buildit/patternlab-base-toolkit.git"
},
"bugs": "https://github.com/pattern-lab/edition-node-gulp/issues",
"author": "Brian Muenzenmeyer",
"contributors": [
"Matteo Pescarin"
],
"scripts": {
"start": "gulp patternlab:serve",
"postinstall": "node scripts/postinstall.js",
"gulp": "gulp",
"stylelint": "stylelint source/sass/**/*.scss"
},
"license": "MIT",
"engines": {
"node": ">=5.0"
},
"browserslist": [
"last 2 versions"
],
"devDependencies": {
"stylelint": "^8.4.0",
"stylelint-config-sass-guidelines": "^3.1.0",
"stylelint-order": "^0.7.0",
"stylelint-scss": "^2.2.0"
}
}