-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
38 lines (38 loc) · 939 Bytes
/
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
{
"name": "safe-mock",
"version": "0.2.11",
"description": "Type Safe Mocking Library written for Typescript and Javascript",
"homepage": "https://github.com/matthewmcnew/safe-mock",
"repository": {
"type": "git",
"url": "https://github.com/matthewmcnew/safe-mock"
},
"bugs": {
"url": "https://github.com/matthewmcnew/safe-mock/issues"
},
"keywords": [
"mock",
"mocking",
"unittesting",
"testing",
"typescript"
],
"main": "src/SafeMock.js",
"typings": "index.d.ts",
"scripts": {
"test": "mocha test --require ts-node/register test/**/*.ts && npm run build",
"build": "tsc",
"prepublish": "tsc"
},
"author": "Matthew McNew",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^2.2.48",
"chai": "^4.1.2",
"mocha": "^3.5.3",
"ts-node": "^6.0.3",
"typescript": "3.1.3",
"source-map-support": "^0.5.5"
}
}