Roughing out the demo app

This commit is contained in:
Nate Taylor
2019-10-23 07:41:03 -05:00
parent 5bc58a2d40
commit 94be06d3c4
2841 changed files with 274065 additions and 2 deletions

71
node_modules/pluralize/package.json generated vendored Normal file
View File

@@ -0,0 +1,71 @@
{
"_from": "pluralize@^8.0.0",
"_id": "pluralize@8.0.0",
"_inBundle": false,
"_integrity": "sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA==",
"_location": "/pluralize",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "pluralize@^8.0.0",
"name": "pluralize",
"escapedName": "pluralize",
"rawSpec": "^8.0.0",
"saveSpec": null,
"fetchSpec": "^8.0.0"
},
"_requiredBy": [
"/json-server"
],
"_resolved": "https://registry.npmjs.org/pluralize/-/pluralize-8.0.0.tgz",
"_shasum": "1a6fa16a38d12a1901e0320fa017051c539ce3b1",
"_spec": "pluralize@^8.0.0",
"_where": "/Users/nate/code/pluralsight/async-programming-promises/node_modules/json-server",
"author": {
"name": "Blake Embrey",
"email": "hello@blakeembrey.com",
"url": "http://blakeembrey.me"
},
"bugs": {
"url": "https://github.com/blakeembrey/pluralize/issues"
},
"bundleDependencies": false,
"deprecated": false,
"description": "Pluralize and singularize any word",
"devDependencies": {
"chai": "^4.0.0",
"istanbul": "^0.4.5",
"mocha": "^5.0.0",
"semistandard": "^12.0.0"
},
"engines": {
"node": ">=4"
},
"files": [
"pluralize.js"
],
"homepage": "https://github.com/blakeembrey/pluralize#readme",
"keywords": [
"plural",
"plurals",
"pluralize",
"singular",
"singularize",
"inflection"
],
"license": "MIT",
"main": "pluralize.js",
"name": "pluralize",
"repository": {
"type": "git",
"url": "git+https://github.com/blakeembrey/pluralize.git"
},
"scripts": {
"lint": "semistandard",
"test": "npm run lint && npm run test-cov",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec --bail",
"test-spec": "mocha -R spec --bail"
},
"version": "8.0.0"
}