-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
62 lines (62 loc) · 1.79 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
{
"name": "modulz-css",
"version": "0.6.6",
"description": "A CSS library of components for building responsive websites and applications.",
"author": "Colm Tuite <[email protected]> (http://www.colmtuite.com)",
"style": "src/css/modulz.css",
"main": "dist/modulz.min.css",
"files": [
"css",
"src"
],
"keywords": [
"css",
"oocss",
"framework",
"front-end"
],
"scripts": {
"start": "webpack-dev-server --config './build/webpack.dev.config.js'",
"build:dev": "webpack --config './build/webpack.dev.config.js'",
"build": "rimraf ./public/* && webpack -p --config './build/webpack.build.config.js'",
"build:dist:js": "webpack -p --config './build/webpack.dist.js.config.js'",
"build:dist:main": "webpack -p --config './build/webpack.dist.config.js'",
"build:dist": "rimraf ./dist/* clean && npm run build:dist:js && npm run build:dist:main"
},
"repository": {
"type": "git",
"url": "git+https://github.com/modulz/modulz.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/modulz/modulz/issues"
},
"homepage": "https://www.modulz.co",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-es2015": "^6.24.1",
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.11.2",
"highlight.js": "^9.12.0",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^2.30.1",
"postcss-cssnext": "^3.0.2",
"postcss-import": "^10.0.0",
"postcss-loader": "^2.0.6",
"style-loader": "^0.18.2",
"url-loader": "^1.0.1",
"webpack": "^3.5.3",
"webpack-dev-server": "^2.7.1"
},
"contributors": [
{
"name": "Colm Tuite",
"email": "[email protected]"
}
],
"dependencies": {
"npm": "^5.8.0"
}
}