-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (105 loc) · 2.69 KB
/
package.json
File metadata and controls
107 lines (105 loc) · 2.69 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
{
"name": "my-css-modules",
"version": "1.0.0",
"description": "css modules experiment with stylus",
"dependencies": {
"jquery": "~2.2.0"
},
"devDependencies": {
"autoprefixer": "~6.3.1",
"babel": "^6.5.2",
"babel-core": "~6.4.0",
"babel-eslint": "~4.1.3",
"babel-plugin-add-module-exports": "~0.1.2",
"babel-preset-es2015": "~6.3.13",
"babelify": "~7.2.0",
"browser-sync": "~2.11.1",
"browserify": "~13.0.0",
"del": "~2.2.0",
"envify": "~3.4.0",
"foldero": "~0.1.1",
"glob": "~6.0.4",
"gulp": "~3.9.1",
"gulp-changed": "~1.3.0",
"gulp-concat": "^2.6.0",
"gulp-cssnano": "~2.1.0",
"gulp-data": "~1.2.1",
"gulp-eslint": "~1.1.1",
"gulp-htmlmin": "~1.3.0",
"gulp-if": "~2.0.0",
"gulp-imagemin": "~2.4.0",
"gulp-load-plugins": "~1.2.0",
"gulp-newer": "~1.1.0",
"gulp-plumber": "~1.0.1",
"gulp-postcss": "~6.0.1",
"gulp-pug": "^3.2.0",
"gulp-rename": "~1.2.2",
"gulp-sourcemaps": "~1.6.0",
"gulp-stylus": "~2.3.1",
"gulp-uglify": "~1.5.1",
"gulp-util": "~3.0.7",
"gulp.spritesmith": "~6.2.1",
"imagemin-pngquant": "~4.2.0",
"imagemin-svgo": "~4.2.0",
"jasmine-core": "2.4.1",
"jeet": "6.1.1",
"js-crc": "^0.1.0",
"js-md5": "^0.4.1",
"js-sha3": "^0.5.7",
"js-yaml": "~3.5.2",
"karma": "~0.13.19",
"karma-browserify": "~4.4.2",
"karma-jasmine": "~0.3.6",
"karma-phantomjs-launcher": "~0.2.3",
"lodash": "~4.0.0",
"minimist": "~1.2.0",
"multi-glob": "^1.0.1",
"nib": "^1.1.0",
"phantomjs": "~1.9.19",
"postcss-modules": "^0.4.1",
"posthtml-css-modules": "^0.1.0",
"posthtml-stylus-modules": "0.0.7",
"pug": "^2.0.0-beta6",
"rimraf": "~2.5.0",
"rupture": "~0.6.1",
"stylus": "~0.54.2",
"stylus-type-utils": "0.0.3",
"vinyl-buffer": "~1.0.0",
"vinyl-source-stream": "~1.1.0",
"watchify": "~3.7.0 ",
"wrench": "~1.5.8"
},
"scripts": {
"clean-deps": "rimraf node_modules"
},
"engines": {
"node": ">=0.12.0"
},
"//": "CUSTOM CONFIGURATION",
"config": {
"//": "Entry files",
"host": "127.0.0.1",
"port": "3000",
"baseUrl": "./",
"directories": {
"source": "source",
"destination": "/",
"temporary": "temp/",
"//": "Directories relative to `source` directory",
"components": "_components",
"modules": "_modules",
"organisms": "_organisms",
"templates": "_templates",
"pages": "_pages",
"layouts": "_layouts",
"images": "_images",
"styles": "_styles",
"scripts": "_scripts",
"data": "_data"
},
"entries": {
"js": "main**.js",
"css": "main**.styl"
}
}
}