forked from ttarnowski/ts-sinon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.25 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "ts-sinon",
"version": "1.0.16",
"description": "sinon library extension to stub whole object and interfaces",
"author": {
"name": "Tomasz Tarnowski",
"email": "[email protected]",
"url": "https://github.com/ttarnowski"
},
"bugs": {
"url": "https://github.com/ttarnowski/ts-sinon/issues"
},
"homepage": "https://github.com/ttarnowski/ts-sinon",
"license": "MIT",
"keywords": [
"typescript",
"node",
"sinon",
"ts-sinon",
"interface stub",
"interface mock",
"typescript stub",
"stub",
"typescript sinon"
],
"repository": {
"type": "git",
"url": "git://github.com/ttarnowski/ts-sinon.git"
},
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"postinstall": "tsc -p ./ --outDir dist/",
"test": "./node_modules/.bin/mocha -r ts-node/register ./src/index.spec.ts"
},
"dependencies": {
"@types/node": "^11.9.0",
"@types/sinon": "^7.0.5",
"@types/sinon-chai": "^3.2.2",
"sinon": "^7.2.3"
},
"devDependencies": {
"ts-node": "^8.0.2",
"typescript": "^3.3.3",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"rimraf": "^2.6.3",
"sinon-chai": "^3.3.0"
}
}