Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/debug/package.json')
-rw-r--r--node_modules/debug/package.json70
1 files changed, 48 insertions, 22 deletions
diff --git a/node_modules/debug/package.json b/node_modules/debug/package.json
index ca32e3b8f..6fbeefd4a 100644
--- a/node_modules/debug/package.json
+++ b/node_modules/debug/package.json
@@ -1,30 +1,36 @@
{
- "_from": "debug@3.1.0",
- "_id": "debug@3.1.0",
+ "_from": "debug@^4.1.0",
+ "_id": "debug@4.1.1",
"_inBundle": false,
- "_integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
+ "_integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==",
"_location": "/debug",
"_phantomChildren": {},
"_requested": {
- "type": "version",
+ "type": "range",
"registry": true,
- "raw": "debug@3.1.0",
+ "raw": "debug@^4.1.0",
"name": "debug",
"escapedName": "debug",
- "rawSpec": "3.1.0",
+ "rawSpec": "^4.1.0",
"saveSpec": null,
- "fetchSpec": "3.1.0"
+ "fetchSpec": "^4.1.0"
},
"_requiredBy": [
+ "/@babel/traverse",
+ "/agent-base",
+ "/agentkeepalive",
"/cloudant-follow",
- "/eslint",
"/http-proxy-agent",
- "/https-proxy-agent"
+ "/https-proxy-agent",
+ "/istanbul-lib-source-maps",
+ "/nano",
+ "/socks-proxy-agent",
+ "/tap-mocha-reporter"
],
- "_resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
- "_shasum": "5bb5a0672628b64149566ba16819e61518c67261",
- "_spec": "debug@3.1.0",
- "_where": "/Users/rebecca/code/npm/node_modules/http-proxy-agent",
+ "_resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
+ "_shasum": "3b72260255109c6b589cee050f1d516139664791",
+ "_spec": "debug@^4.1.0",
+ "_where": "/Users/isaacs/dev/npm/cli/node_modules/agentkeepalive",
"author": {
"name": "TJ Holowaychuk",
"email": "tj@vision-media.ca"
@@ -46,28 +52,34 @@
}
],
"dependencies": {
- "ms": "2.0.0"
+ "ms": "^2.1.1"
},
"deprecated": false,
"description": "small debugging utility",
"devDependencies": {
+ "@babel/cli": "^7.0.0",
+ "@babel/core": "^7.0.0",
+ "@babel/preset-env": "^7.0.0",
"browserify": "14.4.0",
"chai": "^3.5.0",
"concurrently": "^3.1.0",
- "coveralls": "^2.11.15",
- "eslint": "^3.12.1",
+ "coveralls": "^3.0.2",
"istanbul": "^0.4.5",
- "karma": "^1.3.0",
+ "karma": "^3.0.0",
"karma-chai": "^0.1.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.2",
- "karma-sinon": "^1.0.5",
- "mocha": "^3.2.0",
+ "mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.2.0",
"rimraf": "^2.5.4",
- "sinon": "^1.17.6",
- "sinon-chai": "^2.8.0"
+ "xo": "^0.23.0"
},
+ "files": [
+ "src",
+ "dist/debug.js",
+ "LICENSE",
+ "README.md"
+ ],
"homepage": "https://github.com/visionmedia/debug#readme",
"keywords": [
"debug",
@@ -81,5 +93,19 @@
"type": "git",
"url": "git://github.com/visionmedia/debug.git"
},
- "version": "3.1.0"
+ "scripts": {
+ "build": "npm run build:debug && npm run build:test",
+ "build:debug": "babel -o dist/debug.js dist/debug.es6.js > dist/debug.js",
+ "build:test": "babel -d dist test.js",
+ "clean": "rimraf dist coverage",
+ "lint": "xo",
+ "prebuild:debug": "mkdir -p dist && browserify --standalone debug -o dist/debug.es6.js .",
+ "pretest:browser": "npm run build",
+ "test": "npm run test:node && npm run test:browser",
+ "test:browser": "karma start --single-run",
+ "test:coverage": "cat ./coverage/lcov.info | coveralls",
+ "test:node": "istanbul cover _mocha -- test.js"
+ },
+ "unpkg": "./dist/debug.js",
+ "version": "4.1.1"
}