first part is working
This commit is contained in:
21
node_modules/@types/command-line-args/LICENSE
generated
vendored
Normal file
21
node_modules/@types/command-line-args/LICENSE
generated
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE
|
16
node_modules/@types/command-line-args/README.md
generated
vendored
Normal file
16
node_modules/@types/command-line-args/README.md
generated
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
# Installation
|
||||
> `npm install --save @types/command-line-args`
|
||||
|
||||
# Summary
|
||||
This package contains type definitions for command-line-args (https://github.com/75lb/command-line-args).
|
||||
|
||||
# Details
|
||||
Files were exported from https://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/command-line-args
|
||||
|
||||
Additional Details
|
||||
* Last updated: Thu, 03 May 2018 20:08:25 GMT
|
||||
* Dependencies: none
|
||||
* Global values: none
|
||||
|
||||
# Credits
|
||||
These definitions were written by Lloyd Brookes <https://github.com/75lb>.
|
90
node_modules/@types/command-line-args/index.d.ts
generated
vendored
Normal file
90
node_modules/@types/command-line-args/index.d.ts
generated
vendored
Normal file
@ -0,0 +1,90 @@
|
||||
// Type definitions for command-line-args 5.0
|
||||
// Project: https://github.com/75lb/command-line-args
|
||||
// Definitions by: Lloyd Brookes <https://github.com/75lb>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.2
|
||||
|
||||
/**
|
||||
* Returns an object containing option values parsed from the command line. By default it parses the global `process.argv` array.
|
||||
* Parsing is strict by default. To be more permissive, enable `partial` or `stopAtFirstUnknown` modes.
|
||||
*/
|
||||
declare function commandLineArgs(optionDefinitions: commandLineArgs.OptionDefinition[], options?: commandLineArgs.ParseOptions): commandLineArgs.CommandLineOptions;
|
||||
|
||||
declare namespace commandLineArgs {
|
||||
interface CommandLineOptions {
|
||||
/**
|
||||
* Command-line arguments not parsed by `commandLineArgs`.
|
||||
*/
|
||||
_unknown?: string[];
|
||||
[propName: string]: any;
|
||||
}
|
||||
|
||||
interface ParseOptions {
|
||||
/**
|
||||
* An array of strings which if present will be parsed instead of `process.argv`.
|
||||
*/
|
||||
argv?: string[];
|
||||
|
||||
/**
|
||||
* If `true`, `commandLineArgs` will not throw on unknown options or values, instead returning them in the `_unknown` property of the output.
|
||||
*/
|
||||
partial?: boolean;
|
||||
|
||||
/**
|
||||
* If `true`, `commandLineArgs` will not throw on unknown options or values. Instead, parsing will stop at the first unknown argument
|
||||
* and the remaining arguments returned in the `_unknown` property of the output. If set, `partial: true` is implied.
|
||||
*/
|
||||
stopAtFirstUnknown?: boolean;
|
||||
|
||||
/**
|
||||
* If `true`, options with hypenated names (e.g. `move-to`) will be returned in camel-case (e.g. `moveTo`).
|
||||
*/
|
||||
camelCase?: boolean;
|
||||
}
|
||||
|
||||
interface OptionDefinition {
|
||||
/**
|
||||
* The long option name.
|
||||
*/
|
||||
name: string;
|
||||
|
||||
/**
|
||||
* A setter function (you receive the output from this) enabling you to be specific about the type and value received. Typical values
|
||||
* are `String` (the default), `Number` and `Boolean` but you can use a custom function. If no option value was set you will receive `null`.
|
||||
*/
|
||||
type?: (input: string) => any;
|
||||
|
||||
/**
|
||||
* A getopt-style short option name. Can be any single character except a digit or hyphen.
|
||||
*/
|
||||
alias?: string;
|
||||
|
||||
/**
|
||||
* Set this flag if the option accepts multiple values. In the output, you will receive an array of values each passed through the `type` function.
|
||||
*/
|
||||
multiple?: boolean;
|
||||
|
||||
/**
|
||||
* Identical to `multiple` but with greedy parsing disabled.
|
||||
*/
|
||||
lazyMultiple?: boolean;
|
||||
|
||||
/**
|
||||
* Any values unaccounted for by an option definition will be set on the `defaultOption`. This flag is typically set
|
||||
* on the most commonly-used option to enable more concise usage.
|
||||
*/
|
||||
defaultOption?: boolean;
|
||||
|
||||
/**
|
||||
* An initial value for the option.
|
||||
*/
|
||||
defaultValue?: any;
|
||||
|
||||
/**
|
||||
* One or more group names the option belongs to.
|
||||
*/
|
||||
group?: string | string[];
|
||||
}
|
||||
}
|
||||
|
||||
export = commandLineArgs;
|
51
node_modules/@types/command-line-args/package.json
generated
vendored
Normal file
51
node_modules/@types/command-line-args/package.json
generated
vendored
Normal file
@ -0,0 +1,51 @@
|
||||
{
|
||||
"_args": [
|
||||
[
|
||||
"@types/command-line-args@5.0.0",
|
||||
"/opt/services/PiAlive"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "@types/command-line-args@5.0.0",
|
||||
"_id": "@types/command-line-args@5.0.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-4eOPXyn5DmP64MCMF8ePDvdlvlzt2a+F8ZaVjqmh2yFCpGjc1kI3kGnCFYX9SCsGTjQcWIyVZ86IHCEyjy/MNg==",
|
||||
"_location": "/@types/command-line-args",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "@types/command-line-args@5.0.0",
|
||||
"name": "@types/command-line-args",
|
||||
"escapedName": "@types%2fcommand-line-args",
|
||||
"scope": "@types",
|
||||
"rawSpec": "5.0.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "5.0.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"#DEV:/"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/@types/command-line-args/-/command-line-args-5.0.0.tgz",
|
||||
"_spec": "5.0.0",
|
||||
"_where": "/opt/services/PiAlive",
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Lloyd Brookes",
|
||||
"url": "https://github.com/75lb"
|
||||
}
|
||||
],
|
||||
"dependencies": {},
|
||||
"description": "TypeScript definitions for command-line-args",
|
||||
"license": "MIT",
|
||||
"main": "",
|
||||
"name": "@types/command-line-args",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://www.github.com/DefinitelyTyped/DefinitelyTyped.git"
|
||||
},
|
||||
"scripts": {},
|
||||
"typeScriptVersion": "2.2",
|
||||
"typesPublisherContentHash": "ac83de209d63ac92e03dd17bbadb3e37bbd2552f573bba286ba77e9cfe34dbf6",
|
||||
"version": "5.0.0"
|
||||
}
|
27
node_modules/@types/moment/package.json
generated
vendored
27
node_modules/@types/moment/package.json
generated
vendored
@ -1,38 +1,41 @@
|
||||
{
|
||||
"_from": "@types/moment",
|
||||
"_args": [
|
||||
[
|
||||
"@types/moment@2.13.0",
|
||||
"/opt/services/PiAlive"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "@types/moment@2.13.0",
|
||||
"_id": "@types/moment@2.13.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-YE69GJvDvDShVIaJQE5hoqSqyJY=",
|
||||
"_location": "/@types/moment",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "tag",
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "@types/moment",
|
||||
"raw": "@types/moment@2.13.0",
|
||||
"name": "@types/moment",
|
||||
"escapedName": "@types%2fmoment",
|
||||
"scope": "@types",
|
||||
"rawSpec": "",
|
||||
"rawSpec": "2.13.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "latest"
|
||||
"fetchSpec": "2.13.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"#DEV:/",
|
||||
"#USER"
|
||||
"#DEV:/"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/@types/moment/-/moment-2.13.0.tgz",
|
||||
"_shasum": "604ebd189bc3bc34a1548689404e61a2a4aac896",
|
||||
"_spec": "@types/moment",
|
||||
"_where": "/home/wn/workspace-node/PiAlive",
|
||||
"_spec": "2.13.0",
|
||||
"_where": "/opt/services/PiAlive",
|
||||
"author": "",
|
||||
"bugs": {
|
||||
"url": "https://github.com/moment/moment/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {
|
||||
"moment": "*"
|
||||
},
|
||||
"deprecated": "This is a stub types definition for Moment (https://github.com/moment/moment). Moment provides its own type definitions, so you don't need @types/moment installed!",
|
||||
"description": "Stub TypeScript definitions entry for Moment, which provides its own types definitions",
|
||||
"homepage": "https://github.com/moment/moment#readme",
|
||||
"license": "MIT",
|
||||
|
26
node_modules/@types/node/package.json
generated
vendored
26
node_modules/@types/node/package.json
generated
vendored
@ -1,33 +1,38 @@
|
||||
{
|
||||
"_from": "@types/node",
|
||||
"_args": [
|
||||
[
|
||||
"@types/node@10.1.0",
|
||||
"/opt/services/PiAlive"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "@types/node@10.1.0",
|
||||
"_id": "@types/node@10.1.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-sELcX/cJHwRp8kn4hYSvBxKGJ+ubl3MvS8VJQe5gz/sp7CifYxsiCxIJ35wMIYyGVMgfO2AzRa8UcVReAcJRlw==",
|
||||
"_location": "/@types/node",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "tag",
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "@types/node",
|
||||
"raw": "@types/node@10.1.0",
|
||||
"name": "@types/node",
|
||||
"escapedName": "@types%2fnode",
|
||||
"scope": "@types",
|
||||
"rawSpec": "",
|
||||
"rawSpec": "10.1.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "latest"
|
||||
"fetchSpec": "10.1.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"#DEV:/",
|
||||
"#USER"
|
||||
"/@types/onoff"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/@types/node/-/node-10.1.0.tgz",
|
||||
"_shasum": "2783ee1b6c47cbd4044f4a233976c1ac5fa9e942",
|
||||
"_spec": "@types/node",
|
||||
"_where": "/home/wn/workspace-node/PiAlive",
|
||||
"_spec": "10.1.0",
|
||||
"_where": "/opt/services/PiAlive",
|
||||
"bugs": {
|
||||
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Microsoft TypeScript",
|
||||
@ -127,7 +132,6 @@
|
||||
}
|
||||
],
|
||||
"dependencies": {},
|
||||
"deprecated": false,
|
||||
"description": "TypeScript definitions for Node.js",
|
||||
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped.git#readme",
|
||||
"license": "MIT",
|
||||
|
27
node_modules/@types/onoff/package.json
generated
vendored
27
node_modules/@types/onoff/package.json
generated
vendored
@ -1,38 +1,41 @@
|
||||
{
|
||||
"_from": "@types/onoff",
|
||||
"_args": [
|
||||
[
|
||||
"@types/onoff@0.0.27",
|
||||
"/opt/services/PiAlive"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "@types/onoff@0.0.27",
|
||||
"_id": "@types/onoff@0.0.27",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-V3fk2EWEsACiLUtfPQSZuYrlRHg=",
|
||||
"_location": "/@types/onoff",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "tag",
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "@types/onoff",
|
||||
"raw": "@types/onoff@0.0.27",
|
||||
"name": "@types/onoff",
|
||||
"escapedName": "@types%2fonoff",
|
||||
"scope": "@types",
|
||||
"rawSpec": "",
|
||||
"rawSpec": "0.0.27",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "latest"
|
||||
"fetchSpec": "0.0.27"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"#DEV:/",
|
||||
"#USER"
|
||||
"#DEV:/"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/@types/onoff/-/onoff-0.0.27.tgz",
|
||||
"_shasum": "5777e4d84584b000a22d4b5f3d0499b98ae54478",
|
||||
"_spec": "@types/onoff",
|
||||
"_where": "/home/wn/workspace-node/PiAlive",
|
||||
"_spec": "0.0.27",
|
||||
"_where": "/opt/services/PiAlive",
|
||||
"author": {
|
||||
"name": "Marcel Ernst",
|
||||
"email": "https://github.com/marcel-ernst"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {
|
||||
"@types/node": "*"
|
||||
},
|
||||
"deprecated": false,
|
||||
"description": "TypeScript definitions for onoff",
|
||||
"license": "MIT",
|
||||
"main": "",
|
||||
|
23
node_modules/argv-tools/package.json
generated
vendored
23
node_modules/argv-tools/package.json
generated
vendored
@ -1,27 +1,32 @@
|
||||
{
|
||||
"_from": "argv-tools@^0.1.1",
|
||||
"_args": [
|
||||
[
|
||||
"argv-tools@0.1.1",
|
||||
"/opt/services/PiAlive"
|
||||
]
|
||||
],
|
||||
"_from": "argv-tools@0.1.1",
|
||||
"_id": "argv-tools@0.1.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-Cc0dBvx4dvrjjKpyDA6w8RlNAw8Su30NvZbWl/Tv9ZALEVlLVkWQiHMi84Q0xNfpVuSaiQbYkdmWK8g1PLGhKw==",
|
||||
"_location": "/argv-tools",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "argv-tools@^0.1.1",
|
||||
"raw": "argv-tools@0.1.1",
|
||||
"name": "argv-tools",
|
||||
"escapedName": "argv-tools",
|
||||
"rawSpec": "^0.1.1",
|
||||
"rawSpec": "0.1.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^0.1.1"
|
||||
"fetchSpec": "0.1.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/command-line-args"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/argv-tools/-/argv-tools-0.1.1.tgz",
|
||||
"_shasum": "588283f3393ada47141440b12981cd41bf6b7032",
|
||||
"_spec": "argv-tools@^0.1.1",
|
||||
"_where": "/home/wn/workspace-node/PiAlive/node_modules/command-line-args",
|
||||
"_spec": "0.1.1",
|
||||
"_where": "/opt/services/PiAlive",
|
||||
"author": {
|
||||
"name": "Lloyd Brookes",
|
||||
"email": "75pound@gmail.com"
|
||||
@ -29,12 +34,10 @@
|
||||
"bugs": {
|
||||
"url": "https://github.com/75lb/argv-tools/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {
|
||||
"array-back": "^2.0.0",
|
||||
"find-replace": "^2.0.1"
|
||||
},
|
||||
"deprecated": false,
|
||||
"description": "[](https://www.npmjs.org/package/argv-tools) [](https://www.npmjs.org/package/argv-tools) [](https://travis-ci.org/75lb/argv-tools) [](https://david-dm.org/75lb/argv-tools) [](https://github.com/feross/standard)",
|
||||
"devDependencies": {
|
||||
"jsdoc-to-markdown": "^3.0.3",
|
||||
|
23
node_modules/array-back/package.json
generated
vendored
23
node_modules/array-back/package.json
generated
vendored
@ -1,19 +1,25 @@
|
||||
{
|
||||
"_from": "array-back@^2.0.0",
|
||||
"_args": [
|
||||
[
|
||||
"array-back@2.0.0",
|
||||
"/opt/services/PiAlive"
|
||||
]
|
||||
],
|
||||
"_from": "array-back@2.0.0",
|
||||
"_id": "array-back@2.0.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-eJv4pLLufP3g5kcZry0j6WXpIbzYw9GUB4mVJZno9wfwiBxbizTnHCw3VJb07cBihbFX48Y7oSrW9y+gt4glyw==",
|
||||
"_location": "/array-back",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "array-back@^2.0.0",
|
||||
"raw": "array-back@2.0.0",
|
||||
"name": "array-back",
|
||||
"escapedName": "array-back",
|
||||
"rawSpec": "^2.0.0",
|
||||
"rawSpec": "2.0.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^2.0.0"
|
||||
"fetchSpec": "2.0.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/argv-tools",
|
||||
@ -22,9 +28,8 @@
|
||||
"/test-value"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/array-back/-/array-back-2.0.0.tgz",
|
||||
"_shasum": "6877471d51ecc9c9bfa6136fb6c7d5fe69748022",
|
||||
"_spec": "array-back@^2.0.0",
|
||||
"_where": "/home/wn/workspace-node/PiAlive/node_modules/command-line-args",
|
||||
"_spec": "2.0.0",
|
||||
"_where": "/opt/services/PiAlive",
|
||||
"author": {
|
||||
"name": "Lloyd Brookes",
|
||||
"email": "75pound@gmail.com"
|
||||
@ -32,11 +37,9 @@
|
||||
"bugs": {
|
||||
"url": "https://github.com/75lb/array-back/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {
|
||||
"typical": "^2.6.1"
|
||||
},
|
||||
"deprecated": false,
|
||||
"description": "Guarantees an array back",
|
||||
"devDependencies": {
|
||||
"coveralls": "^2.13.1",
|
||||
|
23
node_modules/bindings/package.json
generated
vendored
23
node_modules/bindings/package.json
generated
vendored
@ -1,27 +1,32 @@
|
||||
{
|
||||
"_from": "bindings@^1.3.0",
|
||||
"_args": [
|
||||
[
|
||||
"bindings@1.3.0",
|
||||
"/opt/services/PiAlive"
|
||||
]
|
||||
],
|
||||
"_from": "bindings@1.3.0",
|
||||
"_id": "bindings@1.3.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-DpLh5EzMR2kzvX1KIlVC0VkC3iZtHKTgdtZ0a3pglBZdaQFjt5S9g9xd1lE+YvXyfd6mtCeRnrUfOLYiTMlNSw==",
|
||||
"_location": "/bindings",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "bindings@^1.3.0",
|
||||
"raw": "bindings@1.3.0",
|
||||
"name": "bindings",
|
||||
"escapedName": "bindings",
|
||||
"rawSpec": "^1.3.0",
|
||||
"rawSpec": "1.3.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^1.3.0"
|
||||
"fetchSpec": "1.3.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/epoll"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/bindings/-/bindings-1.3.0.tgz",
|
||||
"_shasum": "b346f6ecf6a95f5a815c5839fc7cdb22502f1ed7",
|
||||
"_spec": "bindings@^1.3.0",
|
||||
"_where": "/home/wn/workspace-node/PiAlive/node_modules/epoll",
|
||||
"_spec": "1.3.0",
|
||||
"_where": "/opt/services/PiAlive",
|
||||
"author": {
|
||||
"name": "Nathan Rajlich",
|
||||
"email": "nathan@tootallnate.net",
|
||||
@ -30,8 +35,6 @@
|
||||
"bugs": {
|
||||
"url": "https://github.com/TooTallNate/node-bindings/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"deprecated": false,
|
||||
"description": "Helper module for loading your native module's .node file",
|
||||
"homepage": "https://github.com/TooTallNate/node-bindings",
|
||||
"keywords": [
|
||||
|
24
node_modules/command-line-args/package.json
generated
vendored
24
node_modules/command-line-args/package.json
generated
vendored
@ -1,28 +1,32 @@
|
||||
{
|
||||
"_from": "command-line-args",
|
||||
"_args": [
|
||||
[
|
||||
"command-line-args@5.0.2",
|
||||
"/opt/services/PiAlive"
|
||||
]
|
||||
],
|
||||
"_from": "command-line-args@5.0.2",
|
||||
"_id": "command-line-args@5.0.2",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-/qPcbL8zpqg53x4rAaqMFlRV4opN3pbla7I7k9x8kyOBMQoGT6WltjN6sXZuxOXw6DgdK7Ad+ijYS5gjcr7vlA==",
|
||||
"_location": "/command-line-args",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "tag",
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "command-line-args",
|
||||
"raw": "command-line-args@5.0.2",
|
||||
"name": "command-line-args",
|
||||
"escapedName": "command-line-args",
|
||||
"rawSpec": "",
|
||||
"rawSpec": "5.0.2",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "latest"
|
||||
"fetchSpec": "5.0.2"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"#USER",
|
||||
"/"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-5.0.2.tgz",
|
||||
"_shasum": "c4e56b016636af1323cf485aa25c3cb203dfbbe4",
|
||||
"_spec": "command-line-args",
|
||||
"_where": "/home/wn/workspace-node/PiAlive",
|
||||
"_spec": "5.0.2",
|
||||
"_where": "/opt/services/PiAlive",
|
||||
"author": {
|
||||
"name": "Lloyd Brookes",
|
||||
"email": "75pound@gmail.com"
|
||||
@ -30,7 +34,6 @@
|
||||
"bugs": {
|
||||
"url": "https://github.com/75lb/command-line-args/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {
|
||||
"argv-tools": "^0.1.1",
|
||||
"array-back": "^2.0.0",
|
||||
@ -38,7 +41,6 @@
|
||||
"lodash.camelcase": "^4.3.0",
|
||||
"typical": "^2.6.1"
|
||||
},
|
||||
"deprecated": false,
|
||||
"description": "A mature, feature-complete library to parse command-line options.",
|
||||
"devDependencies": {
|
||||
"coveralls": "^3.0.0",
|
||||
|
4
node_modules/epoll/build/Makefile
generated
vendored
4
node_modules/epoll/build/Makefile
generated
vendored
@ -308,8 +308,8 @@ ifeq ($(strip $(foreach prefix,$(NO_LOAD),\
|
||||
endif
|
||||
|
||||
quiet_cmd_regen_makefile = ACTION Regenerating $@
|
||||
cmd_regen_makefile = cd $(srcdir); /usr/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py -fmake --ignore-environment "--toplevel-dir=." -I/home/wn/workspace-node/PiAlive/node_modules/epoll/build/config.gypi -I/usr/lib/node_modules/npm/node_modules/node-gyp/addon.gypi -I/home/wn/.node-gyp/8.11.1/include/node/common.gypi "--depth=." "-Goutput_dir=." "--generator-output=build" "-Dlibrary=shared_library" "-Dvisibility=default" "-Dnode_root_dir=/home/wn/.node-gyp/8.11.1" "-Dnode_gyp_dir=/usr/lib/node_modules/npm/node_modules/node-gyp" "-Dnode_lib_file=/home/wn/.node-gyp/8.11.1/<(target_arch)/node.lib" "-Dmodule_root_dir=/home/wn/workspace-node/PiAlive/node_modules/epoll" "-Dnode_engine=v8" binding.gyp
|
||||
Makefile: $(srcdir)/../../../../.node-gyp/8.11.1/include/node/common.gypi $(srcdir)/build/config.gypi $(srcdir)/binding.gyp $(srcdir)/../../../../../../usr/lib/node_modules/npm/node_modules/node-gyp/addon.gypi
|
||||
cmd_regen_makefile = cd $(srcdir); /usr/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py -fmake --ignore-environment "--toplevel-dir=." -I/opt/services/PiAlive/node_modules/epoll/build/config.gypi -I/usr/lib/node_modules/npm/node_modules/node-gyp/addon.gypi -I/home/pi/.node-gyp/8.9.3/include/node/common.gypi "--depth=." "-Goutput_dir=." "--generator-output=build" "-Dlibrary=shared_library" "-Dvisibility=default" "-Dnode_root_dir=/home/pi/.node-gyp/8.9.3" "-Dnode_gyp_dir=/usr/lib/node_modules/npm/node_modules/node-gyp" "-Dnode_lib_file=/home/pi/.node-gyp/8.9.3/<(target_arch)/node.lib" "-Dmodule_root_dir=/opt/services/PiAlive/node_modules/epoll" "-Dnode_engine=v8" binding.gyp
|
||||
Makefile: $(srcdir)/../../../../../home/pi/.node-gyp/8.9.3/include/node/common.gypi $(srcdir)/build/config.gypi $(srcdir)/binding.gyp $(srcdir)/../../../../../usr/lib/node_modules/npm/node_modules/node-gyp/addon.gypi
|
||||
$(call do_cmd,regen_makefile)
|
||||
|
||||
# "all" is a concatenation of the "all" targets from all the included
|
||||
|
2
node_modules/epoll/build/Release/.deps/Release/obj.target/epoll.node.d
generated
vendored
2
node_modules/epoll/build/Release/.deps/Release/obj.target/epoll.node.d
generated
vendored
@ -1 +1 @@
|
||||
cmd_Release/obj.target/epoll.node := g++ -shared -pthread -rdynamic -m64 -Wl,-soname=epoll.node -o Release/obj.target/epoll.node -Wl,--start-group Release/obj.target/epoll/src/epoll.o -Wl,--end-group
|
||||
cmd_Release/obj.target/epoll.node := g++ -shared -pthread -rdynamic -Wl,-soname=epoll.node -o Release/obj.target/epoll.node -Wl,--start-group Release/obj.target/epoll/src/epoll.o -Wl,--end-group
|
||||
|
66
node_modules/epoll/build/Release/.deps/Release/obj.target/epoll/src/epoll.o.d
generated
vendored
66
node_modules/epoll/build/Release/.deps/Release/obj.target/epoll/src/epoll.o.d
generated
vendored
@ -1,21 +1,21 @@
|
||||
cmd_Release/obj.target/epoll/src/epoll.o := g++ '-DNODE_GYP_MODULE_NAME=epoll' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DBUILDING_NODE_EXTENSION' -I/home/wn/.node-gyp/8.11.1/include/node -I/home/wn/.node-gyp/8.11.1/src -I/home/wn/.node-gyp/8.11.1/deps/uv/include -I/home/wn/.node-gyp/8.11.1/deps/v8/include -I../../nan -fPIC -pthread -Wall -Wextra -Wno-unused-parameter -m64 -Wno-unused-local-typedefs -O3 -fno-omit-frame-pointer -fno-rtti -fno-exceptions -std=gnu++0x -MMD -MF ./Release/.deps/Release/obj.target/epoll/src/epoll.o.d.raw -c -o Release/obj.target/epoll/src/epoll.o ../src/epoll.cc
|
||||
cmd_Release/obj.target/epoll/src/epoll.o := g++ '-DNODE_GYP_MODULE_NAME=epoll' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DBUILDING_NODE_EXTENSION' -I/home/pi/.node-gyp/8.9.3/include/node -I/home/pi/.node-gyp/8.9.3/src -I/home/pi/.node-gyp/8.9.3/deps/uv/include -I/home/pi/.node-gyp/8.9.3/deps/v8/include -I../../nan -fPIC -pthread -Wall -Wextra -Wno-unused-parameter -Wno-unused-local-typedefs -O3 -fno-omit-frame-pointer -fno-rtti -fno-exceptions -std=gnu++0x -MMD -MF ./Release/.deps/Release/obj.target/epoll/src/epoll.o.d.raw -c -o Release/obj.target/epoll/src/epoll.o ../src/epoll.cc
|
||||
Release/obj.target/epoll/src/epoll.o: ../src/epoll.cc \
|
||||
/home/wn/.node-gyp/8.11.1/include/node/uv.h \
|
||||
/home/wn/.node-gyp/8.11.1/include/node/uv-errno.h \
|
||||
/home/wn/.node-gyp/8.11.1/include/node/uv-version.h \
|
||||
/home/wn/.node-gyp/8.11.1/include/node/uv-unix.h \
|
||||
/home/wn/.node-gyp/8.11.1/include/node/uv-threadpool.h \
|
||||
/home/wn/.node-gyp/8.11.1/include/node/uv-linux.h \
|
||||
/home/wn/.node-gyp/8.11.1/include/node/v8.h \
|
||||
/home/wn/.node-gyp/8.11.1/include/node/v8-version.h \
|
||||
/home/wn/.node-gyp/8.11.1/include/node/v8config.h \
|
||||
/home/wn/.node-gyp/8.11.1/include/node/node.h \
|
||||
/home/wn/.node-gyp/8.11.1/include/node/v8.h \
|
||||
/home/wn/.node-gyp/8.11.1/include/node/node_version.h \
|
||||
/home/wn/.node-gyp/8.11.1/include/node/node_object_wrap.h \
|
||||
/home/wn/.node-gyp/8.11.1/include/node/node_version.h ../../nan/nan.h \
|
||||
/home/wn/.node-gyp/8.11.1/include/node/node_buffer.h \
|
||||
/home/wn/.node-gyp/8.11.1/include/node/node.h ../../nan/nan_callbacks.h \
|
||||
/home/pi/.node-gyp/8.9.3/include/node/uv.h \
|
||||
/home/pi/.node-gyp/8.9.3/include/node/uv-errno.h \
|
||||
/home/pi/.node-gyp/8.9.3/include/node/uv-version.h \
|
||||
/home/pi/.node-gyp/8.9.3/include/node/uv-unix.h \
|
||||
/home/pi/.node-gyp/8.9.3/include/node/uv-threadpool.h \
|
||||
/home/pi/.node-gyp/8.9.3/include/node/uv-linux.h \
|
||||
/home/pi/.node-gyp/8.9.3/include/node/v8.h \
|
||||
/home/pi/.node-gyp/8.9.3/include/node/v8-version.h \
|
||||
/home/pi/.node-gyp/8.9.3/include/node/v8config.h \
|
||||
/home/pi/.node-gyp/8.9.3/include/node/node.h \
|
||||
/home/pi/.node-gyp/8.9.3/include/node/v8.h \
|
||||
/home/pi/.node-gyp/8.9.3/include/node/node_version.h \
|
||||
/home/pi/.node-gyp/8.9.3/include/node/node_object_wrap.h \
|
||||
/home/pi/.node-gyp/8.9.3/include/node/node_version.h ../../nan/nan.h \
|
||||
/home/pi/.node-gyp/8.9.3/include/node/node_buffer.h \
|
||||
/home/pi/.node-gyp/8.9.3/include/node/node.h ../../nan/nan_callbacks.h \
|
||||
../../nan/nan_callbacks_12_inl.h ../../nan/nan_maybe_43_inl.h \
|
||||
../../nan/nan_converters.h ../../nan/nan_converters_43_inl.h \
|
||||
../../nan/nan_new.h ../../nan/nan_implementation_12_inl.h \
|
||||
@ -23,23 +23,23 @@ Release/obj.target/epoll/src/epoll.o: ../src/epoll.cc \
|
||||
../../nan/nan_object_wrap.h ../../nan/nan_private.h \
|
||||
../../nan/nan_typedarray_contents.h ../../nan/nan_json.h ../src/epoll.h
|
||||
../src/epoll.cc:
|
||||
/home/wn/.node-gyp/8.11.1/include/node/uv.h:
|
||||
/home/wn/.node-gyp/8.11.1/include/node/uv-errno.h:
|
||||
/home/wn/.node-gyp/8.11.1/include/node/uv-version.h:
|
||||
/home/wn/.node-gyp/8.11.1/include/node/uv-unix.h:
|
||||
/home/wn/.node-gyp/8.11.1/include/node/uv-threadpool.h:
|
||||
/home/wn/.node-gyp/8.11.1/include/node/uv-linux.h:
|
||||
/home/wn/.node-gyp/8.11.1/include/node/v8.h:
|
||||
/home/wn/.node-gyp/8.11.1/include/node/v8-version.h:
|
||||
/home/wn/.node-gyp/8.11.1/include/node/v8config.h:
|
||||
/home/wn/.node-gyp/8.11.1/include/node/node.h:
|
||||
/home/wn/.node-gyp/8.11.1/include/node/v8.h:
|
||||
/home/wn/.node-gyp/8.11.1/include/node/node_version.h:
|
||||
/home/wn/.node-gyp/8.11.1/include/node/node_object_wrap.h:
|
||||
/home/wn/.node-gyp/8.11.1/include/node/node_version.h:
|
||||
/home/pi/.node-gyp/8.9.3/include/node/uv.h:
|
||||
/home/pi/.node-gyp/8.9.3/include/node/uv-errno.h:
|
||||
/home/pi/.node-gyp/8.9.3/include/node/uv-version.h:
|
||||
/home/pi/.node-gyp/8.9.3/include/node/uv-unix.h:
|
||||
/home/pi/.node-gyp/8.9.3/include/node/uv-threadpool.h:
|
||||
/home/pi/.node-gyp/8.9.3/include/node/uv-linux.h:
|
||||
/home/pi/.node-gyp/8.9.3/include/node/v8.h:
|
||||
/home/pi/.node-gyp/8.9.3/include/node/v8-version.h:
|
||||
/home/pi/.node-gyp/8.9.3/include/node/v8config.h:
|
||||
/home/pi/.node-gyp/8.9.3/include/node/node.h:
|
||||
/home/pi/.node-gyp/8.9.3/include/node/v8.h:
|
||||
/home/pi/.node-gyp/8.9.3/include/node/node_version.h:
|
||||
/home/pi/.node-gyp/8.9.3/include/node/node_object_wrap.h:
|
||||
/home/pi/.node-gyp/8.9.3/include/node/node_version.h:
|
||||
../../nan/nan.h:
|
||||
/home/wn/.node-gyp/8.11.1/include/node/node_buffer.h:
|
||||
/home/wn/.node-gyp/8.11.1/include/node/node.h:
|
||||
/home/pi/.node-gyp/8.9.3/include/node/node_buffer.h:
|
||||
/home/pi/.node-gyp/8.9.3/include/node/node.h:
|
||||
../../nan/nan_callbacks.h:
|
||||
../../nan/nan_callbacks_12_inl.h:
|
||||
../../nan/nan_maybe_43_inl.h:
|
||||
|
BIN
node_modules/epoll/build/Release/epoll.node
generated
vendored
BIN
node_modules/epoll/build/Release/epoll.node
generated
vendored
Binary file not shown.
BIN
node_modules/epoll/build/Release/obj.target/epoll.node
generated
vendored
BIN
node_modules/epoll/build/Release/obj.target/epoll.node
generated
vendored
Binary file not shown.
BIN
node_modules/epoll/build/Release/obj.target/epoll/src/epoll.o
generated
vendored
BIN
node_modules/epoll/build/Release/obj.target/epoll/src/epoll.o
generated
vendored
Binary file not shown.
34
node_modules/epoll/build/config.gypi
generated
vendored
34
node_modules/epoll/build/config.gypi
generated
vendored
@ -8,23 +8,26 @@
|
||||
"libraries": []
|
||||
},
|
||||
"variables": {
|
||||
"arm_float_abi": "hard",
|
||||
"arm_fpu": "vfp",
|
||||
"arm_thumb": 0,
|
||||
"arm_version": "6",
|
||||
"asan": 0,
|
||||
"coverage": "false",
|
||||
"debug_devtools": "node",
|
||||
"debug_http2": "false",
|
||||
"debug_nghttp2": "false",
|
||||
"force_dynamic_crt": 0,
|
||||
"gas_version": "2.23",
|
||||
"host_arch": "x64",
|
||||
"icu_data_file": "icudt60l.dat",
|
||||
"icu_data_in": "../../deps/icu-small/source/data/in/icudt60l.dat",
|
||||
"gas_version": "2.24",
|
||||
"host_arch": "arm",
|
||||
"icu_data_file": "icudt59l.dat",
|
||||
"icu_data_in": "../../deps/icu-small/source/data/in/icudt59l.dat",
|
||||
"icu_endianness": "l",
|
||||
"icu_gyp_path": "tools/icu/icu-generic.gyp",
|
||||
"icu_locales": "en,root",
|
||||
"icu_path": "deps/icu-small",
|
||||
"icu_small": "true",
|
||||
"icu_ver_major": "60",
|
||||
"llvm_version": 0,
|
||||
"icu_ver_major": "59",
|
||||
"node_byteorder": "little",
|
||||
"node_enable_d8": "false",
|
||||
"node_enable_v8_vtunejit": "false",
|
||||
@ -37,7 +40,6 @@
|
||||
"node_shared_cares": "false",
|
||||
"node_shared_http_parser": "false",
|
||||
"node_shared_libuv": "false",
|
||||
"node_shared_nghttp2": "false",
|
||||
"node_shared_openssl": "false",
|
||||
"node_shared_zlib": "false",
|
||||
"node_tag": "",
|
||||
@ -52,7 +54,7 @@
|
||||
"openssl_fips": "",
|
||||
"openssl_no_asm": 0,
|
||||
"shlib_suffix": "so.57",
|
||||
"target_arch": "x64",
|
||||
"target_arch": "arm",
|
||||
"uv_parent_path": "/deps/uv/",
|
||||
"uv_use_dtrace": "false",
|
||||
"v8_enable_gdbjit": 0,
|
||||
@ -65,13 +67,13 @@
|
||||
"v8_trace_maps": 0,
|
||||
"v8_use_snapshot": "true",
|
||||
"want_separate_host_toolset": 0,
|
||||
"nodedir": "/home/wn/.node-gyp/8.11.1",
|
||||
"nodedir": "/home/pi/.node-gyp/8.9.3",
|
||||
"standalone_static_library": 1,
|
||||
"cache_lock_stale": "60000",
|
||||
"ham_it_up": "",
|
||||
"legacy_bundling": "",
|
||||
"sign_git_tag": "",
|
||||
"user_agent": "npm/6.0.1 node/v8.11.1 linux x64",
|
||||
"user_agent": "npm/5.6.0 node/v8.9.3 linux arm",
|
||||
"always_auth": "",
|
||||
"bin_links": "true",
|
||||
"key": "",
|
||||
@ -93,7 +95,7 @@
|
||||
"tag_version_prefix": "v",
|
||||
"cache_max": "Infinity",
|
||||
"timing": "",
|
||||
"userconfig": "/home/wn/.npmrc",
|
||||
"userconfig": "/home/pi/.npmrc",
|
||||
"engine_strict": "",
|
||||
"init_author_name": "",
|
||||
"init_author_url": "",
|
||||
@ -108,7 +110,6 @@
|
||||
"progress": "true",
|
||||
"https_proxy": "",
|
||||
"save_prod": "",
|
||||
"audit": "true",
|
||||
"cidr": "",
|
||||
"onload_script": "",
|
||||
"sso_type": "oauth",
|
||||
@ -125,7 +126,7 @@
|
||||
"save_optional": "",
|
||||
"searchopts": "",
|
||||
"versions": "",
|
||||
"cache": "/home/wn/.npm",
|
||||
"cache": "/home/pi/.npm",
|
||||
"send_metrics": "",
|
||||
"global_style": "",
|
||||
"ignore_scripts": "",
|
||||
@ -135,7 +136,6 @@
|
||||
"node_gyp": "/usr/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js",
|
||||
"prefer_offline": "",
|
||||
"color": "true",
|
||||
"no_proxy": "",
|
||||
"fetch_retry_mintimeout": "10000",
|
||||
"maxsockets": "50",
|
||||
"offline": "",
|
||||
@ -148,16 +148,16 @@
|
||||
"cert": "",
|
||||
"global": "",
|
||||
"link": "",
|
||||
"save": "true",
|
||||
"access": "",
|
||||
"also": "",
|
||||
"save": "true",
|
||||
"unicode": "true",
|
||||
"long": "",
|
||||
"production": "",
|
||||
"searchlimit": "20",
|
||||
"unsafe_perm": "true",
|
||||
"auth_type": "legacy",
|
||||
"node_version": "8.11.1",
|
||||
"node_version": "8.9.3",
|
||||
"tag": "latest",
|
||||
"git_tag_version": "true",
|
||||
"commit_hooks": "true",
|
||||
@ -168,7 +168,7 @@
|
||||
"strict_ssl": "true",
|
||||
"dev": "",
|
||||
"globalconfig": "/usr/etc/npmrc",
|
||||
"init_module": "/home/wn/.npm-init.js",
|
||||
"init_module": "/home/pi/.npm-init.js",
|
||||
"parseable": "",
|
||||
"globalignorefile": "/usr/etc/npmignore",
|
||||
"cache_lock_retries": "10",
|
||||
|
24
node_modules/epoll/build/epoll.target.mk
generated
vendored
24
node_modules/epoll/build/epoll.target.mk
generated
vendored
@ -21,7 +21,6 @@ CFLAGS_Debug := \
|
||||
-Wall \
|
||||
-Wextra \
|
||||
-Wno-unused-parameter \
|
||||
-m64 \
|
||||
-Wno-unused-local-typedefs \
|
||||
-g \
|
||||
-O0
|
||||
@ -36,10 +35,10 @@ CFLAGS_CC_Debug := \
|
||||
-std=gnu++0x
|
||||
|
||||
INCS_Debug := \
|
||||
-I/home/wn/.node-gyp/8.11.1/include/node \
|
||||
-I/home/wn/.node-gyp/8.11.1/src \
|
||||
-I/home/wn/.node-gyp/8.11.1/deps/uv/include \
|
||||
-I/home/wn/.node-gyp/8.11.1/deps/v8/include \
|
||||
-I/home/pi/.node-gyp/8.9.3/include/node \
|
||||
-I/home/pi/.node-gyp/8.9.3/src \
|
||||
-I/home/pi/.node-gyp/8.9.3/deps/uv/include \
|
||||
-I/home/pi/.node-gyp/8.9.3/deps/v8/include \
|
||||
-I$(srcdir)/../nan
|
||||
|
||||
DEFS_Release := \
|
||||
@ -58,7 +57,6 @@ CFLAGS_Release := \
|
||||
-Wall \
|
||||
-Wextra \
|
||||
-Wno-unused-parameter \
|
||||
-m64 \
|
||||
-Wno-unused-local-typedefs \
|
||||
-O3 \
|
||||
-fno-omit-frame-pointer
|
||||
@ -73,10 +71,10 @@ CFLAGS_CC_Release := \
|
||||
-std=gnu++0x
|
||||
|
||||
INCS_Release := \
|
||||
-I/home/wn/.node-gyp/8.11.1/include/node \
|
||||
-I/home/wn/.node-gyp/8.11.1/src \
|
||||
-I/home/wn/.node-gyp/8.11.1/deps/uv/include \
|
||||
-I/home/wn/.node-gyp/8.11.1/deps/v8/include \
|
||||
-I/home/pi/.node-gyp/8.9.3/include/node \
|
||||
-I/home/pi/.node-gyp/8.9.3/src \
|
||||
-I/home/pi/.node-gyp/8.9.3/deps/uv/include \
|
||||
-I/home/pi/.node-gyp/8.9.3/deps/v8/include \
|
||||
-I$(srcdir)/../nan
|
||||
|
||||
OBJS := \
|
||||
@ -108,13 +106,11 @@ $(obj).$(TOOLSET)/$(TARGET)/%.o: $(obj)/%.cc FORCE_DO_CMD
|
||||
### Rules for final target.
|
||||
LDFLAGS_Debug := \
|
||||
-pthread \
|
||||
-rdynamic \
|
||||
-m64
|
||||
-rdynamic
|
||||
|
||||
LDFLAGS_Release := \
|
||||
-pthread \
|
||||
-rdynamic \
|
||||
-m64
|
||||
-rdynamic
|
||||
|
||||
LIBS :=
|
||||
|
||||
|
23
node_modules/epoll/package.json
generated
vendored
23
node_modules/epoll/package.json
generated
vendored
@ -1,39 +1,42 @@
|
||||
{
|
||||
"_from": "epoll@^2.0.1",
|
||||
"_args": [
|
||||
[
|
||||
"epoll@2.0.1",
|
||||
"/opt/services/PiAlive"
|
||||
]
|
||||
],
|
||||
"_from": "epoll@2.0.1",
|
||||
"_id": "epoll@2.0.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-BkaCu6dpfGZqiGockN6bf0pQYUdHNjKOWflOMuYNB+JnHq+SgpBQyWE7jWOWExsGVGp99A12R16WpoBZV/0UwQ==",
|
||||
"_location": "/epoll",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "epoll@^2.0.1",
|
||||
"raw": "epoll@2.0.1",
|
||||
"name": "epoll",
|
||||
"escapedName": "epoll",
|
||||
"rawSpec": "^2.0.1",
|
||||
"rawSpec": "2.0.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^2.0.1"
|
||||
"fetchSpec": "2.0.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/onoff"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/epoll/-/epoll-2.0.1.tgz",
|
||||
"_shasum": "4742f963048fab6ad4347f678b0e9e38d58a417e",
|
||||
"_spec": "epoll@^2.0.1",
|
||||
"_where": "/home/wn/workspace-node/PiAlive/node_modules/onoff",
|
||||
"_spec": "2.0.1",
|
||||
"_where": "/opt/services/PiAlive",
|
||||
"author": {
|
||||
"name": "fivdi"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/fivdi/epoll/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {
|
||||
"bindings": "^1.3.0",
|
||||
"nan": "^2.10.0"
|
||||
},
|
||||
"deprecated": false,
|
||||
"description": "A low-level Node.js binding for the Linux epoll API",
|
||||
"directories": {
|
||||
"example": "example",
|
||||
|
23
node_modules/find-replace/package.json
generated
vendored
23
node_modules/find-replace/package.json
generated
vendored
@ -1,28 +1,33 @@
|
||||
{
|
||||
"_from": "find-replace@^2.0.1",
|
||||
"_args": [
|
||||
[
|
||||
"find-replace@2.0.1",
|
||||
"/opt/services/PiAlive"
|
||||
]
|
||||
],
|
||||
"_from": "find-replace@2.0.1",
|
||||
"_id": "find-replace@2.0.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-LzDo3Fpa30FLIBsh6DCDnMN1KW2g4QKkqKmejlImgWY67dDFPX/x9Kh/op/GK522DchQXEvDi/wD48HKW49XOQ==",
|
||||
"_location": "/find-replace",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "find-replace@^2.0.1",
|
||||
"raw": "find-replace@2.0.1",
|
||||
"name": "find-replace",
|
||||
"escapedName": "find-replace",
|
||||
"rawSpec": "^2.0.1",
|
||||
"rawSpec": "2.0.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^2.0.1"
|
||||
"fetchSpec": "2.0.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/argv-tools",
|
||||
"/command-line-args"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/find-replace/-/find-replace-2.0.1.tgz",
|
||||
"_shasum": "6d9683a7ca20f8f9aabeabad07e4e2580f528550",
|
||||
"_spec": "find-replace@^2.0.1",
|
||||
"_where": "/home/wn/workspace-node/PiAlive/node_modules/command-line-args",
|
||||
"_spec": "2.0.1",
|
||||
"_where": "/opt/services/PiAlive",
|
||||
"author": {
|
||||
"name": "Lloyd Brookes",
|
||||
"email": "75pound@gmail.com"
|
||||
@ -30,12 +35,10 @@
|
||||
"bugs": {
|
||||
"url": "https://github.com/75lb/find-replace/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {
|
||||
"array-back": "^2.0.0",
|
||||
"test-value": "^3.0.0"
|
||||
},
|
||||
"deprecated": false,
|
||||
"description": "Find and either replace or remove items from an array",
|
||||
"devDependencies": {
|
||||
"jsdoc-to-markdown": "^3.0.2",
|
||||
|
23
node_modules/lodash.camelcase/package.json
generated
vendored
23
node_modules/lodash.camelcase/package.json
generated
vendored
@ -1,27 +1,32 @@
|
||||
{
|
||||
"_from": "lodash.camelcase@^4.3.0",
|
||||
"_args": [
|
||||
[
|
||||
"lodash.camelcase@4.3.0",
|
||||
"/opt/services/PiAlive"
|
||||
]
|
||||
],
|
||||
"_from": "lodash.camelcase@4.3.0",
|
||||
"_id": "lodash.camelcase@4.3.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=",
|
||||
"_location": "/lodash.camelcase",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "lodash.camelcase@^4.3.0",
|
||||
"raw": "lodash.camelcase@4.3.0",
|
||||
"name": "lodash.camelcase",
|
||||
"escapedName": "lodash.camelcase",
|
||||
"rawSpec": "^4.3.0",
|
||||
"rawSpec": "4.3.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^4.3.0"
|
||||
"fetchSpec": "4.3.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/command-line-args"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz",
|
||||
"_shasum": "b28aa6288a2b9fc651035c7711f65ab6190331a6",
|
||||
"_spec": "lodash.camelcase@^4.3.0",
|
||||
"_where": "/home/wn/workspace-node/PiAlive/node_modules/command-line-args",
|
||||
"_spec": "4.3.0",
|
||||
"_where": "/opt/services/PiAlive",
|
||||
"author": {
|
||||
"name": "John-David Dalton",
|
||||
"email": "john.david.dalton@gmail.com",
|
||||
@ -30,7 +35,6 @@
|
||||
"bugs": {
|
||||
"url": "https://github.com/lodash/lodash/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"contributors": [
|
||||
{
|
||||
"name": "John-David Dalton",
|
||||
@ -48,7 +52,6 @@
|
||||
"url": "https://mathiasbynens.be/"
|
||||
}
|
||||
],
|
||||
"deprecated": false,
|
||||
"description": "The lodash method `_.camelCase` exported as a module.",
|
||||
"homepage": "https://lodash.com/",
|
||||
"icon": "https://lodash.com/icon.svg",
|
||||
|
23
node_modules/lodash.debounce/package.json
generated
vendored
23
node_modules/lodash.debounce/package.json
generated
vendored
@ -1,27 +1,32 @@
|
||||
{
|
||||
"_from": "lodash.debounce@^4.0.8",
|
||||
"_args": [
|
||||
[
|
||||
"lodash.debounce@4.0.8",
|
||||
"/opt/services/PiAlive"
|
||||
]
|
||||
],
|
||||
"_from": "lodash.debounce@4.0.8",
|
||||
"_id": "lodash.debounce@4.0.8",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=",
|
||||
"_location": "/lodash.debounce",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "lodash.debounce@^4.0.8",
|
||||
"raw": "lodash.debounce@4.0.8",
|
||||
"name": "lodash.debounce",
|
||||
"escapedName": "lodash.debounce",
|
||||
"rawSpec": "^4.0.8",
|
||||
"rawSpec": "4.0.8",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^4.0.8"
|
||||
"fetchSpec": "4.0.8"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/onoff"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz",
|
||||
"_shasum": "82d79bff30a67c4005ffd5e2515300ad9ca4d7af",
|
||||
"_spec": "lodash.debounce@^4.0.8",
|
||||
"_where": "/home/wn/workspace-node/PiAlive/node_modules/onoff",
|
||||
"_spec": "4.0.8",
|
||||
"_where": "/opt/services/PiAlive",
|
||||
"author": {
|
||||
"name": "John-David Dalton",
|
||||
"email": "john.david.dalton@gmail.com",
|
||||
@ -30,7 +35,6 @@
|
||||
"bugs": {
|
||||
"url": "https://github.com/lodash/lodash/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"contributors": [
|
||||
{
|
||||
"name": "John-David Dalton",
|
||||
@ -48,7 +52,6 @@
|
||||
"url": "https://mathiasbynens.be/"
|
||||
}
|
||||
],
|
||||
"deprecated": false,
|
||||
"description": "The lodash method `_.debounce` exported as a module.",
|
||||
"homepage": "https://lodash.com/",
|
||||
"icon": "https://lodash.com/icon.svg",
|
||||
|
27
node_modules/moment/package.json
generated
vendored
27
node_modules/moment/package.json
generated
vendored
@ -1,28 +1,33 @@
|
||||
{
|
||||
"_from": "moment",
|
||||
"_args": [
|
||||
[
|
||||
"moment@2.22.1",
|
||||
"/opt/services/PiAlive"
|
||||
]
|
||||
],
|
||||
"_from": "moment@2.22.1",
|
||||
"_id": "moment@2.22.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-shJkRTSebXvsVqk56I+lkb2latjBs8I+pc2TzWc545y2iFnSjm7Wg0QMh+ZWcdSLQyGEau5jI8ocnmkyTgr9YQ==",
|
||||
"_location": "/moment",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "tag",
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "moment",
|
||||
"raw": "moment@2.22.1",
|
||||
"name": "moment",
|
||||
"escapedName": "moment",
|
||||
"rawSpec": "",
|
||||
"rawSpec": "2.22.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "latest"
|
||||
"fetchSpec": "2.22.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"#USER",
|
||||
"/"
|
||||
"/",
|
||||
"/@types/moment"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/moment/-/moment-2.22.1.tgz",
|
||||
"_shasum": "529a2e9bf973f259c9643d237fda84de3a26e8ad",
|
||||
"_spec": "moment",
|
||||
"_where": "/home/wn/workspace-node/PiAlive",
|
||||
"_spec": "2.22.1",
|
||||
"_where": "/opt/services/PiAlive",
|
||||
"author": {
|
||||
"name": "Iskren Ivov Chernev",
|
||||
"email": "iskren.chernev@gmail.com",
|
||||
@ -31,7 +36,6 @@
|
||||
"bugs": {
|
||||
"url": "https://github.com/moment/moment/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Tim Wood",
|
||||
@ -58,7 +62,6 @@
|
||||
"url": "https://github.com/oire"
|
||||
}
|
||||
],
|
||||
"deprecated": false,
|
||||
"description": "Parse, validate, manipulate, and display dates",
|
||||
"devDependencies": {
|
||||
"benchmark": "latest",
|
||||
|
23
node_modules/nan/package.json
generated
vendored
23
node_modules/nan/package.json
generated
vendored
@ -1,31 +1,35 @@
|
||||
{
|
||||
"_from": "nan@^2.10.0",
|
||||
"_args": [
|
||||
[
|
||||
"nan@2.10.0",
|
||||
"/opt/services/PiAlive"
|
||||
]
|
||||
],
|
||||
"_from": "nan@2.10.0",
|
||||
"_id": "nan@2.10.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-bAdJv7fBLhWC+/Bls0Oza+mvTaNQtP+1RyhhhvD95pgUJz6XM5IzgmxOkItJ9tkoCiplvAnXI1tNmmUD/eScyA==",
|
||||
"_location": "/nan",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "nan@^2.10.0",
|
||||
"raw": "nan@2.10.0",
|
||||
"name": "nan",
|
||||
"escapedName": "nan",
|
||||
"rawSpec": "^2.10.0",
|
||||
"rawSpec": "2.10.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^2.10.0"
|
||||
"fetchSpec": "2.10.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/epoll"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/nan/-/nan-2.10.0.tgz",
|
||||
"_shasum": "96d0cd610ebd58d4b4de9cc0c6828cda99c7548f",
|
||||
"_spec": "nan@^2.10.0",
|
||||
"_where": "/home/wn/workspace-node/PiAlive/node_modules/epoll",
|
||||
"_spec": "2.10.0",
|
||||
"_where": "/opt/services/PiAlive",
|
||||
"bugs": {
|
||||
"url": "https://github.com/nodejs/nan/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Rod Vagg",
|
||||
@ -68,7 +72,6 @@
|
||||
"url": "https://github.com/mkrufky"
|
||||
}
|
||||
],
|
||||
"deprecated": false,
|
||||
"description": "Native Abstractions for Node.js: C++ header for Node 0.8 -> 9 compatibility",
|
||||
"devDependencies": {
|
||||
"bindings": "~1.2.1",
|
||||
|
24
node_modules/onoff/package.json
generated
vendored
24
node_modules/onoff/package.json
generated
vendored
@ -1,40 +1,42 @@
|
||||
{
|
||||
"_from": "onoff",
|
||||
"_args": [
|
||||
[
|
||||
"onoff@3.1.0",
|
||||
"/opt/services/PiAlive"
|
||||
]
|
||||
],
|
||||
"_from": "onoff@3.1.0",
|
||||
"_id": "onoff@3.1.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-5hD6y+AB7vW7Pb30Urb9oGVkxhtG1MdoJaEMGsKbCLzpInKdQJEcvbqOjQ8DV6N9r+acPErfz+Veb+v6VidE9A==",
|
||||
"_location": "/onoff",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "tag",
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "onoff",
|
||||
"raw": "onoff@3.1.0",
|
||||
"name": "onoff",
|
||||
"escapedName": "onoff",
|
||||
"rawSpec": "",
|
||||
"rawSpec": "3.1.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "latest"
|
||||
"fetchSpec": "3.1.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"#USER",
|
||||
"/"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/onoff/-/onoff-3.1.0.tgz",
|
||||
"_shasum": "90bfb4d689c60842086b0d237d36cd9b84fffddf",
|
||||
"_spec": "onoff",
|
||||
"_where": "/home/wn/workspace-node/PiAlive",
|
||||
"_spec": "3.1.0",
|
||||
"_where": "/opt/services/PiAlive",
|
||||
"author": {
|
||||
"name": "fivdi"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/fivdi/onoff/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {
|
||||
"epoll": "^2.0.1",
|
||||
"lodash.debounce": "^4.0.8"
|
||||
},
|
||||
"deprecated": false,
|
||||
"description": "GPIO access and interrupt detection with Node.js",
|
||||
"directories": {
|
||||
"example": "examples",
|
||||
|
23
node_modules/test-value/package.json
generated
vendored
23
node_modules/test-value/package.json
generated
vendored
@ -1,27 +1,32 @@
|
||||
{
|
||||
"_from": "test-value@^3.0.0",
|
||||
"_args": [
|
||||
[
|
||||
"test-value@3.0.0",
|
||||
"/opt/services/PiAlive"
|
||||
]
|
||||
],
|
||||
"_from": "test-value@3.0.0",
|
||||
"_id": "test-value@3.0.0",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-sVACdAWcZkSU9x7AOmJo5TqE+GyNJknHaHsMrR6ZnhjVlVN9Yx6FjHrsKZ3BjIpPCT68zYesPWkakrNupwfOTQ==",
|
||||
"_location": "/test-value",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "test-value@^3.0.0",
|
||||
"raw": "test-value@3.0.0",
|
||||
"name": "test-value",
|
||||
"escapedName": "test-value",
|
||||
"rawSpec": "^3.0.0",
|
||||
"rawSpec": "3.0.0",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^3.0.0"
|
||||
"fetchSpec": "3.0.0"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/find-replace"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/test-value/-/test-value-3.0.0.tgz",
|
||||
"_shasum": "9168c062fab11a86b8d444dd968bb4b73851ce92",
|
||||
"_spec": "test-value@^3.0.0",
|
||||
"_where": "/home/wn/workspace-node/PiAlive/node_modules/find-replace",
|
||||
"_spec": "3.0.0",
|
||||
"_where": "/opt/services/PiAlive",
|
||||
"author": {
|
||||
"name": "Lloyd Brookes",
|
||||
"email": "75pound@gmail.com"
|
||||
@ -29,12 +34,10 @@
|
||||
"bugs": {
|
||||
"url": "https://github.com/75lb/test-value/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {
|
||||
"array-back": "^2.0.0",
|
||||
"typical": "^2.6.1"
|
||||
},
|
||||
"deprecated": false,
|
||||
"description": "Test a value in a variety of ways",
|
||||
"devDependencies": {
|
||||
"jsdoc-to-markdown": "^3.0.2",
|
||||
|
27
node_modules/typescript/package.json
generated
vendored
27
node_modules/typescript/package.json
generated
vendored
@ -1,28 +1,33 @@
|
||||
{
|
||||
"_from": "typescript",
|
||||
"_args": [
|
||||
[
|
||||
"typescript@2.8.3",
|
||||
"/opt/services/PiAlive"
|
||||
]
|
||||
],
|
||||
"_development": true,
|
||||
"_from": "typescript@2.8.3",
|
||||
"_id": "typescript@2.8.3",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-K7g15Bb6Ra4lKf7Iq2l/I5/En+hLIHmxWZGq3D4DIRNFxMNV6j2SHSvDOqs2tGd4UvD/fJvrwopzQXjLrT7Itw==",
|
||||
"_location": "/typescript",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "tag",
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "typescript",
|
||||
"raw": "typescript@2.8.3",
|
||||
"name": "typescript",
|
||||
"escapedName": "typescript",
|
||||
"rawSpec": "",
|
||||
"rawSpec": "2.8.3",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "latest"
|
||||
"fetchSpec": "2.8.3"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"#DEV:/",
|
||||
"#USER"
|
||||
"#DEV:/"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/typescript/-/typescript-2.8.3.tgz",
|
||||
"_shasum": "5d817f9b6f31bb871835f4edf0089f21abe6c170",
|
||||
"_spec": "typescript",
|
||||
"_where": "/home/wn/workspace-node/PiAlive",
|
||||
"_spec": "2.8.3",
|
||||
"_where": "/opt/services/PiAlive",
|
||||
"author": {
|
||||
"name": "Microsoft Corp."
|
||||
},
|
||||
@ -38,8 +43,6 @@
|
||||
"bugs": {
|
||||
"url": "https://github.com/Microsoft/TypeScript/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"deprecated": false,
|
||||
"description": "TypeScript is a language for application scale JavaScript development",
|
||||
"devDependencies": {
|
||||
"@types/browserify": "latest",
|
||||
|
23
node_modules/typical/package.json
generated
vendored
23
node_modules/typical/package.json
generated
vendored
@ -1,19 +1,25 @@
|
||||
{
|
||||
"_from": "typical@^2.6.1",
|
||||
"_args": [
|
||||
[
|
||||
"typical@2.6.1",
|
||||
"/opt/services/PiAlive"
|
||||
]
|
||||
],
|
||||
"_from": "typical@2.6.1",
|
||||
"_id": "typical@2.6.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-XAgOXWYcu+OCWdLnCjxyU+hziB0=",
|
||||
"_location": "/typical",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "range",
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "typical@^2.6.1",
|
||||
"raw": "typical@2.6.1",
|
||||
"name": "typical",
|
||||
"escapedName": "typical",
|
||||
"rawSpec": "^2.6.1",
|
||||
"rawSpec": "2.6.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "^2.6.1"
|
||||
"fetchSpec": "2.6.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/array-back",
|
||||
@ -21,9 +27,8 @@
|
||||
"/test-value"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/typical/-/typical-2.6.1.tgz",
|
||||
"_shasum": "5c080e5d661cbbe38259d2e70a3c7253e873881d",
|
||||
"_spec": "typical@^2.6.1",
|
||||
"_where": "/home/wn/workspace-node/PiAlive/node_modules/command-line-args",
|
||||
"_spec": "2.6.1",
|
||||
"_where": "/opt/services/PiAlive",
|
||||
"author": {
|
||||
"name": "Lloyd Brookes",
|
||||
"email": "75pound@gmail.com"
|
||||
@ -31,8 +36,6 @@
|
||||
"bugs": {
|
||||
"url": "https://github.com/75lb/typical/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"deprecated": false,
|
||||
"description": "Robust Javascript type-checking",
|
||||
"devDependencies": {
|
||||
"core-assert": "^0.2.1",
|
||||
|
Reference in New Issue
Block a user