UNPKG

1.31 kBJSONView Raw
1{
2 "name": "ts-sinon",
3 "version": "1.2.0",
4 "description": "sinon library extension to stub whole object and interfaces",
5 "author": {
6 "name": "Tomasz Tarnowski",
7 "email": "t.tarnowski90@gmail.com",
8 "url": "https://github.com/ttarnowski"
9 },
10 "bugs": {
11 "url": "https://github.com/ttarnowski/ts-sinon/issues"
12 },
13 "homepage": "https://github.com/ttarnowski/ts-sinon",
14 "license": "MIT",
15 "keywords": [
16 "typescript",
17 "node",
18 "sinon",
19 "ts-sinon",
20 "interface stub",
21 "interface mock",
22 "typescript stub",
23 "stub",
24 "typescript sinon"
25 ],
26 "repository": {
27 "type": "git",
28 "url": "git://github.com/ttarnowski/ts-sinon.git"
29 },
30 "main": "./dist/index.js",
31 "types": "./dist/index.d.ts",
32 "files": [
33 "/dist"
34 ],
35 "scripts": {
36 "build": "tsc",
37 "prepare": "npm run build",
38 "test": "./node_modules/.bin/mocha -r ts-node/register ./src/index.spec.ts"
39 },
40 "dependencies": {
41 "@types/node": "^11.15.10",
42 "@types/sinon": "^9.0.0",
43 "@types/sinon-chai": "^3.2.4",
44 "sinon": "^9.0.2"
45 },
46 "devDependencies": {
47 "@types/chai": "^4.2.11",
48 "@types/mocha": "^7.0.2",
49 "chai": "^4.2.0",
50 "mocha": "^7.1.1",
51 "rimraf": "^3.0.2",
52 "sinon-chai": "^3.5.0",
53 "ts-node": "^8.8.2",
54 "typescript": "^3.8.3"
55 }
56}