1 | {
|
2 | "author": "Jake Luer <jake@alogicalparadox.com> (http://alogicalparadox.com)",
|
3 | "name": "chai-spies",
|
4 | "description": "Spies for the Chai assertion library.",
|
5 | "keywords": [
|
6 | "chai",
|
7 | "chai-plugin",
|
8 | "browser",
|
9 | "mocks-and-spies",
|
10 | "testing",
|
11 | "spies",
|
12 | "stubs",
|
13 | "mocks"
|
14 | ],
|
15 | "version": "1.1.0",
|
16 | "license": "MIT",
|
17 | "repository": {
|
18 | "type": "git",
|
19 | "url": "git://github.com/chaijs/chai-spies.git"
|
20 | },
|
21 | "main": "./index.js",
|
22 | "browser": "./chai-spies.js",
|
23 | "scripts": {
|
24 | "pretest": "npm run build",
|
25 | "test.only": "mocha --reporter spec test/*.js",
|
26 | "test": "npm run test.only",
|
27 | "build": "rollup -c"
|
28 | },
|
29 | "engines": {
|
30 | "node": ">= 4.0.0"
|
31 | },
|
32 | "peerDependencies": {
|
33 | "chai": "*"
|
34 | },
|
35 | "devDependencies": {
|
36 | "@rollup/plugin-commonjs": "^11.1.0",
|
37 | "chai": "*",
|
38 | "mocha": "*",
|
39 | "rollup": "^2.10.0"
|
40 | }
|
41 | }
|