Add and run removeNPMAbsolutePaths

This commit is contained in:
Robert Brignull 2020-05-12 12:11:25 +01:00
parent a76042ab4a
commit 256c63a715
712 changed files with 13722 additions and 18895 deletions

75
node_modules/lolex/package.json generated vendored
View file

@ -1,16 +1,39 @@
{
"author": {
"name": "Christian Johansen"
"name": "lolex",
"description": "Fake JavaScript timers",
"version": "5.1.2",
"homepage": "http://github.com/sinonjs/lolex",
"author": "Christian Johansen",
"repository": {
"type": "git",
"url": "http://github.com/sinonjs/lolex.git"
},
"bugs": {
"mail": "christian@cjohansen.no",
"url": "http://github.com/sinonjs/lolex/issues"
},
"bundleDependencies": false,
"dependencies": {
"@sinonjs/commons": "^1.7.0"
"license": "BSD-3-Clause",
"scripts": {
"lint": "eslint .",
"test-node": "mocha test/ integration-test/ -R dot --check-leaks",
"test-headless": "mochify --no-detect-globals --timeout=10000",
"test-check-coverage": "npm run test-coverage && nyc check-coverage",
"test-cloud": "mochify --wd --no-detect-globals --timeout=10000",
"test-coverage": "nyc --all --reporter text --reporter html --reporter lcovonly npm run test-node",
"test": "npm run lint && npm run test-node && npm run test-headless",
"bundle": "browserify --no-detect-globals -s lolex -o lolex.js src/lolex-src.js",
"prepublishOnly": "npm run bundle",
"preversion": "./scripts/preversion.sh",
"version": "./scripts/version.sh",
"postversion": "./scripts/postversion.sh"
},
"deprecated": false,
"description": "Fake JavaScript timers",
"lint-staged": {
"*.js": "eslint"
},
"files": [
"src/",
"lolex.js"
],
"devDependencies": {
"@sinonjs/referee-sinon": "5.0.0",
"browserify": "16.5.0",
@ -49,23 +72,16 @@
]
}
},
"files": [
"src/",
"lolex.js"
],
"homepage": "http://github.com/sinonjs/lolex",
"module": "./lolex.js",
"main": "./src/lolex-src.js",
"dependencies": {
"@sinonjs/commons": "^1.7.0"
},
"husky": {
"hooks": {
"pre-commit": "run-p lint test-node"
}
},
"license": "BSD-3-Clause",
"lint-staged": {
"*.js": "eslint"
},
"main": "./src/lolex-src.js",
"module": "./lolex.js",
"name": "lolex",
"nyc": {
"branches": 85,
"lines": 92,
@ -76,24 +92,5 @@
"coverage/**",
"lolex.js"
]
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/sinonjs/lolex.git"
},
"scripts": {
"bundle": "browserify --no-detect-globals -s lolex -o lolex.js src/lolex-src.js",
"lint": "eslint .",
"postversion": "./scripts/postversion.sh",
"prepublishOnly": "npm run bundle",
"preversion": "./scripts/preversion.sh",
"test": "npm run lint && npm run test-node && npm run test-headless",
"test-check-coverage": "npm run test-coverage && nyc check-coverage",
"test-cloud": "mochify --wd --no-detect-globals --timeout=10000",
"test-coverage": "nyc --all --reporter text --reporter html --reporter lcovonly npm run test-node",
"test-headless": "mochify --no-detect-globals --timeout=10000",
"test-node": "mocha test/ integration-test/ -R dot --check-leaks",
"version": "./scripts/version.sh"
},
"version": "5.1.2"
}
}