-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 753 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 753 Bytes
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
{
"name": "webpack-guides-code-examples",
"version": "1.0.0",
"description": "This repo contains a collection of examples that are used in the [`Webpack Guides`](https://webpack.js.org/guides/).",
"main": "index.js",
"scripts": {
"build": "npm run lint",
"lint": "eslint . --ext .js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheDutchCoder/webpack-guides-code-examples.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/TheDutchCoder/webpack-guides-code-examples/issues"
},
"homepage": "https://github.com/TheDutchCoder/webpack-guides-code-examples#readme",
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^4.1.1"
}
}