forked from ampproject/ampstart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.07 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
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
112
113
{
"name": "kickstart",
"engines": {
"node": "^7.0.0"
},
"scripts": {
"build": "gulp build",
"clean": "gulp clean",
"www": "gulp www",
"highlight": "gulp highlight",
"watch": "gulp watch:www",
"serve": "gulp serve",
"configurator": "gulp configurator:serve"
},
"private": true,
"license": "Apache-2.0",
"devDependencies": {
"autoprefixer": "^6.5.3",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.3.2",
"babel-plugin-istanbul": "^4.0.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"basscss-responsive-margin": "^1.1.0",
"basscss-responsive-padding": "^1.1.0",
"basscss-responsive-type-scale": "^1.0.1",
"child_process": "^1.0.2",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.26.1",
"css-tree": "1.0.0-alpha19",
"cssbeautify": "^0.3.1",
"cssnano": "^3.8.1",
"deepmerge": "^1.4.4",
"del": "^2.2.2",
"es6-shim": "^0.35.3",
"escape-html": "^1.0.3",
"eslint": "^3.15.0",
"eslint-config-xo-space": "^0.15.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-babel": "^4.0.1",
"eslint-plugin-google-camelcase": "0.0.2",
"extract-text-webpack-plugin": "^2.0.0-rc.3",
"fs-extra": "^2.0.0",
"gulp": "^3.9.1",
"gulp-amphtml-validator": "1.0.0",
"gulp-help": "^1.6.1",
"gulp-postcss": "^6.2.0",
"gulp-posthtml": "^2.0.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-util": "3.0.8",
"gulp-webserver": "^0.9.1",
"highlights": "^2.1.1",
"html-webpack-plugin": "^2.28.0",
"jsdom": "^9.11.0",
"json-loader": "^0.5.4",
"karma": "^1.4.1",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-webpack": "^2.0.2",
"markdown-table": "^1.1.1",
"minimist": "^1.2.0",
"mocha": "^3.5.0",
"mustache": "2.3.0",
"path": "^0.12.7",
"postcss-calc": "^5.3.1",
"postcss-color-function": "^2.0.1",
"postcss-custom-media": "^5.0.1",
"postcss-discard-comments": "^2.0.4",
"postcss-import": "8.0.2",
"postcss-loader": "^1.3.1",
"posthtml-extend-attrs": "^1.0.0",
"posthtml-include": "^1.1.0",
"posthtml-inline-assets": "^2.0.0",
"run-sequence": "^1.1.5",
"style-loader": "^0.13.1",
"through2": "2.0.3",
"webpack": "^2.2.1",
"webpack-closure-compiler": "^2.1.5",
"webpack-dev-middleware": "^1.10.1",
"webpack-dev-server": "^2.7.1",
"webpack-hot-middleware": "^2.17.0",
"worker-loader": "^0.8.1"
},
"dependencies": {
"basscss": "^8.0.3",
"basscss-addons": "^1.0.0",
"basscss-basic": "^1.0.0",
"event-stream": "^3.3.4",
"gulp-zip": "^4.0.0",
"normalize.css": "^5.0.0",
"postcss": "5.2.14",
"postcss-custom-properties": "^5.0.1",
"query-string": "^5.0.0",
"whatwg-fetch": "^2.0.3"
},
"configuratorDependencies": [
"postcss",
"postcss-custom-properties",
"query-string"
],
"eslintConfig": {
"root": true,
"env": {
"browser": true
},
"extends": [
"xo-space/esnext"
],
"parser": "babel-eslint"
}
}