-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.47 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.47 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
{
"name": "js-lightbox",
"version": "1.0.0",
"description": "A web page that shows a grid of photo thumbnails that when clicked, display the respective photo in a lightbox view.",
"scripts": {
"build": "webpack --config webpack-prod.config.js --colors",
"dev": "webpack-dev-server --config webpack-dev.config.js --watch --colors",
"deploy": "gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/caseklim/js-lightbox.git"
},
"keywords": [
"webpack",
"es6",
"javascript"
],
"author": "Casey Klimkowsky",
"license": "MIT",
"bugs": {
"url": "https://github.com/caseklim/js-lightbox/issues"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {
"semi": 2
}
},
"homepage": "https://github.com/caseklim/js-lightbox#readme",
"devDependencies": {
"babel-core": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"css-loader": "^0.23.1",
"eslint": "^2.10.2",
"eslint-loader": "^1.3.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"gh-pages": "^0.11.0",
"html-webpack-plugin": "^2.17.0",
"node-sass": "^3.7.0",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"babel-polyfill": "^6.9.0"
}
}