-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.04 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
{
"name": "bootstrap-grid-demo",
"version": "1.0.1",
"description": "A simple demo to show the column widths using the Bootstrap grid system",
"main": "server.js",
"scripts": {
"start": "rimraf dist && webpack --progress --colors && node server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattdell/bootstrap-grid-demo.git"
},
"keywords": [
"bootstrap",
"grid",
"demo"
],
"author": "Matt Dell <[email protected]> (https://github.com/mattdell)",
"license": "ISC",
"bugs": {
"url": "https://github.com/mattdell/bootstrap-grid-demo/issues"
},
"homepage": "https://github.com/mattdell/bootstrap-grid-demo#readme",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"connect": "^3.4.1",
"copy-webpack-plugin": "^3.0.0",
"path": "^0.12.7",
"rimraf": "^2.5.2",
"serve-static": "^1.10.2",
"webpack": "^1.13.1"
}
}