@@ -92,17 +92,17 @@ if you're interested. The fields we provide are as follows:
9292 to npm, then the name needs to follow [ certain guidelines] ( https://docs.npmjs.com/files/package.json#name )
9393 and be unique.
9494* ` version ` - indicates the version of your site application using semantic
95- versioning ([ semver ] ( https://docs.npmjs.com/misc/semver ) )
95+ versioning ([ SemVer ] ( https://semver.org/ ) )
9696* ` description ` - describes your site.
9797* ` scripts ` - is a JavaScript object containing commands that can be run in a
9898 node environment. There are many [ built-in keys] ( https://docs.npmjs.com/misc/scripts )
9999 related to the package lifecycle that node understands automatically. You can
100100 also define custom scripts for use with your application development. We
101- provide three custom scripts that work with WebPack to get you up and running
101+ provide three custom scripts that work with webpack to get you up and running
102102 quickly with a bundler for your assets and a simple development server.
103103
104104 * ` start ` serves your ` index.html ` with a simple development server
105-
105+
106106* ` keywords ` - an array of keywords used to discover your app in the npm
107107 registry
108108* ` author ` - defines the author of a package. There is also an alternative
@@ -111,4 +111,4 @@ if you're interested. The fields we provide are as follows:
111111* ` license ` - the license for your application. Must conform to
112112 [ specific rules] ( https://docs.npmjs.com/files/package.json#license )
113113* ` devDependencies ` - development dependencies for your package. In our case
114- we have several dependencies used by WebPack , which we use as a simple development server.
114+ we have several dependencies used by webpack , which we use as a simple development server.
0 commit comments