aboutsummaryrefslogtreecommitdiff
path: root/node_modules/@sinonjs/fake-timers/package.json
diff options
context:
space:
mode:
authorJoel Kronqvist <joel.h.kronqvist@gmail.com>2022-03-05 19:02:27 +0200
committerJoel Kronqvist <joel.h.kronqvist@gmail.com>2022-03-05 19:02:27 +0200
commit5d309ff52cd399a6b71968a6b9a70c8ac0b98981 (patch)
tree360f7eb50f956e2367ef38fa1fc6ac7ac5258042 /node_modules/@sinonjs/fake-timers/package.json
parentb500a50f1b97d93c98b36ed9a980f8188d648147 (diff)
downloadLYLLRuoka-5d309ff52cd399a6b71968a6b9a70c8ac0b98981.tar.gz
LYLLRuoka-5d309ff52cd399a6b71968a6b9a70c8ac0b98981.zip
Added node_modules for the updating to work properly.
Diffstat (limited to 'node_modules/@sinonjs/fake-timers/package.json')
-rw-r--r--node_modules/@sinonjs/fake-timers/package.json71
1 files changed, 71 insertions, 0 deletions
diff --git a/node_modules/@sinonjs/fake-timers/package.json b/node_modules/@sinonjs/fake-timers/package.json
new file mode 100644
index 0000000..453d6de
--- /dev/null
+++ b/node_modules/@sinonjs/fake-timers/package.json
@@ -0,0 +1,71 @@
+{
+ "name": "@sinonjs/fake-timers",
+ "description": "Fake JavaScript timers",
+ "version": "8.1.0",
+ "homepage": "https://github.com/sinonjs/fake-timers",
+ "author": "Christian Johansen",
+ "repository": {
+ "type": "git",
+ "url": "https://github.com/sinonjs/fake-timers.git"
+ },
+ "bugs": {
+ "mail": "christian@cjohansen.no",
+ "url": "https://github.com/sinonjs/fake-timers/issues"
+ },
+ "license": "BSD-3-Clause",
+ "scripts": {
+ "lint": "eslint .",
+ "test-node": "mocha --timeout 200 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 test-node && npm run test-headless",
+ "prettier:check": "prettier --check '**/*.{js,css,md}'",
+ "prettier:write": "prettier --write '**/*.{js,css,md}'",
+ "preversion": "./scripts/preversion.sh",
+ "version": "./scripts/version.sh",
+ "postversion": "./scripts/postversion.sh"
+ },
+ "lint-staged": {
+ "*.{js,css,md}": "prettier --check",
+ "*.js": "eslint"
+ },
+ "files": [
+ "src/"
+ ],
+ "devDependencies": {
+ "@sinonjs/eslint-config": "4.0.2",
+ "@sinonjs/referee-sinon": "6.0.1",
+ "eslint-config-prettier": "8.3.0",
+ "eslint-plugin-prettier": "3.4.1",
+ "husky": "4.2.1",
+ "jsdom": "16.5.2",
+ "lint-staged": "10.0.7",
+ "mocha": "8.3.2",
+ "mochify": "7.0.0",
+ "nyc": "14.1.1",
+ "prettier": "2.2.1"
+ },
+ "main": "./src/fake-timers-src.js",
+ "dependencies": {
+ "@sinonjs/commons": "^1.7.0"
+ },
+ "husky": {
+ "hooks": {
+ "pre-commit": "npm run lint"
+ }
+ },
+ "nyc": {
+ "branches": 85,
+ "lines": 92,
+ "functions": 92,
+ "statements": 92,
+ "exclude": [
+ "**/*-test.js",
+ "coverage/**",
+ "types/**",
+ "fake-timers.js"
+ ]
+ }
+}