This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:E023C6BCFBDD67B3FEC1C4BA8862EF452FDE18F5]
| [{ | |
| "customQuestionnaire": [ | |
| "Customizing the 'package.json' questionnaire.", | |
| "https://gist.github.com/DaneTheory/34ad4da825a1f833d91d3d2af4a6e18f" | |
| ] | |
| }] |
| [{ | |
| "npm:current*": { | |
| "ref": "https://docs.npmjs.com/creating-a-package-json-file#customizing-the-packagejson-questionnaire", | |
| "description": "If you expect to create many 'package.json' files, you can customize the questions asked and fields created during the init process so all the 'package.json' files contain a standard set of information.", | |
| "_": [ | |
| "In your home directory, create a file called '.npm-init.js'", | |
| ["To add custom questions, using a text editor, add questions with the 'prompt' function", "module.exports = prompt(\"what's your favorite flavor of ice cream, buddy?\", \"I LIKE THEM ALL\");"], | |
| ["To add custom fields, using a text editor, add desired fields to the '.npm-init.js' file", "module.exports = { \n \"customField\": \"Example custom field\", \n \"otherCustomField\": \"This example field is really cool\" \n }"], | |
| ["To learn more about creating advanced 'npm init' customizations, see the '_url1_:init-package-json:_url1_' GitHub repository.", "_url1_:https:/ |
| [{ | |
| "requirements": { | |
| "sources:long": [ | |
| ["npm:current*", "A 'package.json' file must contain \"name\" and \"version\" fields."], | |
| ["npm:current*", "The 'name' field contains your package's name, and must be lowercase and one word, and may contain hyphens and underscores."], | |
| ["npm:current*", "The 'version' field must be in the form 'x.x.x' and follow the semantic versioning guidelines."] | |
| ], | |
| "_" : [ | |
| ["isFile", "Must be a file"], |
| [ | |
| { | |
| "title": { | |
| "short": "The Package (dot) JSON", | |
| "full": "The Package (dot) JSON: A story of love, triumph, and general witchcraft/wizardry", | |
| "alt": "ThePackageDotJson" | |
| }, | |
| "author": { | |
| "name": "Branden Dane", |
| { | |
| } |
This is an OpenPGP proof that connects my OpenPGP key to this Github account. For details check out https://keyoxide.org/guides/openpgp-proofs
[Verifying my OpenPGP key: openpgp4fpr:E023C6BCFBDD67B3FEC1C4BA8862EF452FDE18F5]
| { | |
| "table": [ | |
| "H", | |
| "Hydrogen", | |
| "1.00794", | |
| 1, | |
| 1, | |
| "He", | |
| "Helium", | |
| "4.002602", |
| var express = require('express'); | |
| var path = require('path'); | |
| var webpackConfig = require('./webpack.config'); | |
| var webpack = require('webpack'); | |
| var webpackDevMiddleware = require('webpack-dev-middleware'); | |
| var webpackHotMiddleware = require('webpack-hot-middleware'); | |
| var proxyMiddleware = require('http-proxy-middleware'); | |
| var devConfig = webpackConfig.devServer; | |
| var app = express(); |
| // |
| // |