-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.3 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 2.3 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "styleguide",
"version": "0.1.0",
"description": "Styleguide generator",
"scripts": {
"kss": "kss-node --config kss-config.json",
"kss-clone": "kss-node --clone",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"author": "Jan Panschab <jan.panschab@gmail.com>",
"license": "MIT",
"babel": {
"presets": [
"es2015"
]
},
"eslintConfig": {
"env": {
"es6": true,
"browser": true,
"node": true,
"jquery": true
},
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"jsx": true
},
"sourceType": "module"
},
"rules": {
"semi": 2,
"quotes": [
2,
"single"
],
"strict": [
2,
"never"
],
"keyword-spacing": 2,
"one-var": [
2,
"never"
],
"no-empty": 2,
"space-in-parens": [
2,
"never"
],
"space-before-function-paren": [
2,
"never"
],
"no-spaced-func": 2,
"no-multiple-empty-lines": [
2,
{
"max": 1
}
],
"linebreak-style": [
2,
"unix"
]
}
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-core": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.2.0",
"browser-sync": "^2.11.2",
"browserify": "^13.0.0",
"copy-paste": "^1.1.4",
"cssnano": "^3.5.2",
"del": "^2.2.0",
"envify": "^3.4.0",
"glob": "^7.0.3",
"gulp": "^3.9.1",
"gulp-css-globbing": "^0.1.8",
"gulp-eslint": "^2.0.0",
"gulp-postcss": "^6.1.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.2.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-svgmin": "^1.2.2",
"gulp-svgstore": "^6.0.0",
"gulp-uglify": "^1.5.3",
"gulp-util": "^3.0.7",
"marked": "^0.3.5",
"merge-stream": "^1.0.0",
"postcss-flexbugs-fixes": "^2.0.0",
"require-dir": "^0.3.0",
"run-sequence": "^1.1.5",
"stream-combiner2": "^1.1.1",
"uglifyify": "^3.0.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0",
"wrench": "^1.5.9",
"yargs": "^4.3.2"
},
"dependencies": {
"handlebars": "^4.0.10",
"kss": "^2.4.0",
"snyk": "^1.38.1"
},
"snyk": true
}