UNPKG

1.44 kBJSONView Raw
1{
2 "name": "@sinonjs/referee-sinon",
3 "version": "2.0.0",
4 "description": "Sinon.JS assertions for referee",
5 "homepage": "https://github.com/sinonjs/referee-sinon",
6 "author": "Christian Johansen",
7 "license": "BSD-3-Clause",
8 "main": "./lib/referee-sinon",
9 "repository": {
10 "type": "git",
11 "url": "https://github.com/sinonjs/referee-sinon"
12 },
13 "scripts": {
14 "build": "run-s build:dist-folder build:bundle",
15 "build:bundle": "rollup -c > dist/referee-sinon.js",
16 "build:dist-folder": "mkdirp dist",
17 "lint": "eslint .",
18 "precommit": "lint-staged",
19 "prepublishOnly": "npm run build && mkdocs gh-deploy -r upstream || mkdocs gh-deploy -r origin",
20 "test": "mocha 'lib/**/*.test.js'",
21 "test-coverage": "nyc --reporter text --reporter html --reporter lcovonly npm run test"
22 },
23 "lint-staged": {
24 "*.js": "eslint"
25 },
26 "files": [
27 "dist/",
28 "docs/",
29 "lib/",
30 "!lib/**/*.test.js"
31 ],
32 "devDependencies": {
33 "@sinonjs/formatio": "^2.0.0",
34 "@sinonjs/referee": "^2.0.0",
35 "eslint": "^4.18.1",
36 "eslint-config-sinon": "^1.0.3",
37 "eslint-plugin-ie11": "^1.0.0",
38 "eslint-plugin-mocha": "^4.11.0",
39 "husky": "^0.14.3",
40 "lint-staged": "^7.0.0",
41 "mocha": "^5.0.1",
42 "nyc": "^11.4.1",
43 "sinon": "^4.4.2"
44 },
45 "dependencies": {
46 "mkdirp": "^0.5.1",
47 "npm-run-all": "^4.1.2",
48 "rollup": "^0.56.3",
49 "rollup-plugin-commonjs": "^8.3.0"
50 }
51}