-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
56 lines (56 loc) · 1.28 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
53
54
55
56
{
"name": "ts-sinon",
"version": "2.0.2",
"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",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "./node_modules/.bin/mocha -r ts-node/register ./src/index.spec.ts"
},
"dependencies": {
"@types/node": "^14.6.1",
"@types/sinon": "^9.0.5",
"@types/sinon-chai": "^3.2.4",
"sinon": "^9.0.3"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"chai": "^4.2.0",
"mocha": "^8.1.2",
"rimraf": "^3.0.2",
"sinon-chai": "^3.5.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}