125 lines
3.9 KiB
JSON
125 lines
3.9 KiB
JSON
|
{
|
||
|
"name": "sinon",
|
||
|
"description": "JavaScript test spies, stubs and mocks.",
|
||
|
"version": "9.2.0",
|
||
|
"homepage": "https://sinonjs.org/",
|
||
|
"author": "Christian Johansen",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "http://github.com/sinonjs/sinon.git"
|
||
|
},
|
||
|
"bugs": {
|
||
|
"url": "http://github.com/sinonjs/sinon/issues"
|
||
|
},
|
||
|
"funding": {
|
||
|
"type": "opencollective",
|
||
|
"url": "https://opencollective.com/sinon"
|
||
|
},
|
||
|
"license": "BSD-3-Clause",
|
||
|
"scripts": {
|
||
|
"test-node": "mocha --recursive -R dot \"test/**/*-test.js\"",
|
||
|
"test-dev": "npm run test-node -- --watch -R min",
|
||
|
"test-headless": "mochify --no-detect-globals --recursive -R dot --grep WebWorker --invert --plugin [ proxyquire-universal ] \"test/**/*-test.js\"",
|
||
|
"test-coverage": "nyc npm run test-headless -- --transform [ babelify --ignore [ test ] --plugins [ babel-plugin-istanbul ] ]",
|
||
|
"test-cloud": "npm run test-headless -- --wd",
|
||
|
"test-webworker": "mochify --no-detect-globals --https-server 8080 --no-request-interception test/webworker/webworker-support-assessment.js",
|
||
|
"test-esm": "mocha -r esm test/es2015/module-support-assessment-test.es6",
|
||
|
"test-esm-bundle": "node test/es2015/check-esm-bundle-is-runnable.js",
|
||
|
"test-docker-image": "docker-compose up",
|
||
|
"test-runnable-examples": "docs/release-source/release/examples/run-test.sh",
|
||
|
"test": "run-s test-node test-headless test-webworker test-esm",
|
||
|
"check-dependencies": "dependency-check package.json --no-dev --ignore-module esm",
|
||
|
"build": "node ./build.js",
|
||
|
"build-docs": "cd docs; bundle exec jekyll build",
|
||
|
"serve-docs": "cd docs; bundle exec jekyll serve --incremental --verbose",
|
||
|
"lint": "run-p lint-js lint-markdown",
|
||
|
"lint-js": "eslint '**/*.{js,mjs}'",
|
||
|
"lint-markdown": "scripts/lint-markdown.sh",
|
||
|
"pretest-webworker": "npm run build",
|
||
|
"prebuild": "rimraf pkg && npm run check-dependencies",
|
||
|
"postbuild": "npm run test-esm-bundle",
|
||
|
"prepublishOnly": "npm run build",
|
||
|
"prettier": "prettier lib/**/*.js test/**/*.js",
|
||
|
"preversion": "./scripts/preversion.sh",
|
||
|
"postversion": "./scripts/postversion.sh"
|
||
|
},
|
||
|
"nyc": {
|
||
|
"instrument": false,
|
||
|
"temp-dir": "coverage/.nyc_output",
|
||
|
"reporter": [
|
||
|
"text",
|
||
|
"lcovonly"
|
||
|
]
|
||
|
},
|
||
|
"lint-staged": {
|
||
|
"*.js": "eslint",
|
||
|
"*.mjs": "eslint --ext mjs --parser-options=sourceType:module",
|
||
|
"docs/**/*.md": "markdownlint"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"@sinonjs/commons": "^1.8.1",
|
||
|
"@sinonjs/fake-timers": "^6.0.1",
|
||
|
"@sinonjs/formatio": "^5.0.1",
|
||
|
"@sinonjs/samsam": "^5.2.0",
|
||
|
"diff": "^4.0.2",
|
||
|
"nise": "^4.0.4",
|
||
|
"supports-color": "^7.1.0"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@babel/core": "^7.8.3",
|
||
|
"@sinonjs/referee": "^6.1.0",
|
||
|
"babel-plugin-istanbul": "^6.0.0",
|
||
|
"babelify": "^10.0.0",
|
||
|
"browserify": "^16.5.0",
|
||
|
"dependency-check": "^4.1.0",
|
||
|
"eslint": "^6.8.0",
|
||
|
"eslint-config-prettier": "^6.9.0",
|
||
|
"eslint-config-sinon": "^3.0.0",
|
||
|
"eslint-plugin-ie11": "^1.0.0",
|
||
|
"eslint-plugin-local-rules": "^0.1.0",
|
||
|
"eslint-plugin-mocha": "^6.1.0",
|
||
|
"eslint-plugin-prettier": "^3.1.0",
|
||
|
"esm": "^3.2.25",
|
||
|
"husky": "^4.2.1",
|
||
|
"lint-staged": "^10.0.7",
|
||
|
"markdownlint-cli": "^0.22.0",
|
||
|
"mocha": "^6.2.0",
|
||
|
"mochify": "^6.6.0",
|
||
|
"npm-run-all": "^4.1.5",
|
||
|
"nyc": "^15.0.0",
|
||
|
"prettier": "^1.18.2",
|
||
|
"proxyquire": "^2.1.3",
|
||
|
"proxyquire-universal": "^2.1.0",
|
||
|
"proxyquireify": "^3.2.1",
|
||
|
"puppeteer": "^2.1.0",
|
||
|
"rimraf": "^3.0.0"
|
||
|
},
|
||
|
"files": [
|
||
|
"lib",
|
||
|
"pkg",
|
||
|
"scripts/support-sinon.js",
|
||
|
"AUTHORS",
|
||
|
"CONTRIBUTING.md",
|
||
|
"CHANGELOG.md",
|
||
|
"LICENSE",
|
||
|
"README.md"
|
||
|
],
|
||
|
"browser": "./lib/sinon.js",
|
||
|
"main": "./lib/sinon.js",
|
||
|
"module": "./pkg/sinon-esm.js",
|
||
|
"cdn": "./pkg/sinon.js",
|
||
|
"jsdelivr": "./pkg/sinon.js",
|
||
|
"esm": {
|
||
|
"cjs": {
|
||
|
"mutableNamespace": false,
|
||
|
"cache": true
|
||
|
},
|
||
|
"mode": "auto"
|
||
|
},
|
||
|
"husky": {
|
||
|
"hooks": {
|
||
|
"pre-commit": "lint-staged"
|
||
|
}
|
||
|
}
|
||
|
}
|