-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.48 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.48 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
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
{
"name": "acca-global-styleguide",
"files": [
"dist/"
],
"description": "The gulp wrapper around patternlab-node core, providing tasks to interact with the core library and move supporting frontend assets.",
"version": "1.0.0",
"main": "gulpfile.js",
"dependencies": {
"browser-sync": "^2.0.0",
"gulp": "gulpjs/gulp#4.0",
"jquery": "^3.3.1",
"minimist": "^1.2.0",
"normalize-scss": "^7.0.1",
"patternlab-node": "^2.0.0",
"starterkit-mustache-base": "^3.0.1",
"styleguidekit-assets-default": "^3.5.2",
"styleguidekit-mustache-default": "^3.0.0"
},
"keywords": [
"Pattern Lab",
"Atomic Web Design",
"Node",
"Gulp",
"Javascript"
],
"repository": {
"type": "git",
"url": "git://github.com/pattern-lab/edition-node-gulp.git"
},
"bugs": "https://github.com/pattern-lab/edition-node-gulp/issues",
"author": "Brian Muenzenmeyer",
"scripts": {
"gulp": "gulp --",
"start": "gulp patternlab:serve",
"build": "gulp patternlab:build",
"build:production": "gulp patternlab:build --mode production",
"publish": "gulp patternlab:publish",
"test": "karma start --browsers Chrome",
"test:single-run": "karma start --single-run --browsers ChromeHeadless"
},
"license": "MIT",
"engines": {
"node": ">=6.0"
},
"devDependencies": {
"autoprefixer": "^8.4.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"chai-jquery": "^2.0.0",
"chalk": "^2.4.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-chai-expect": "^1.1.1",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-mocha": "^5.0.0",
"firebase-tools": "^3.18.4",
"glob": "^7.1.2",
"gulp-notify": "^3.2.0",
"gulp-postcss": "^7.0.1",
"gulp-sass": "^4.0.1",
"gulp-sourcemaps": "^2.6.4",
"gulp-uglify": "^3.0.0",
"karma": "^2.0.2",
"karma-babel-preprocessor": "^7.0.0",
"karma-chai": "^0.1.0",
"karma-chai-jquery": "^1.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jquery": "^0.2.2",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^3.0.0",
"mocha": "^5.1.1",
"uglifyjs-webpack-plugin": "^1.2.5",
"webpack": "^4.8.1",
"webpack-stream": "^4.0.3"
}
}