forked from ffMathy/FluffySpoon.JavaScript.Testing.Faking
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.26 KB
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
{
"name": "@fluffy-spoon/substitute",
"version": "1.0.0",
"description": "TypeScript port of NSubstitute, which aims to provide a much more fluent mocking opportunity for strong-typed languages",
"license": "MIT",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/substitute-js#section-contribute"
},
"author": {
"name": "Mathias Lykkegaard Lorenzen",
"url": "https://github.com/ffMathy"
},
"contributors": [
{
"name": "Enrique Pöhlmann",
"url": "https://github.com/notanengineercom"
}
],
"main": "dist/src/index.js",
"typings": "./dist/src/index.d.ts",
"files": [
"dist/src/**/*"
],
"scripts": {
"prepack": "npm i && tsc",
"test": "tsc && ava",
"build": "tsc"
},
"dependencies": {},
"devDependencies": {
"@ava/typescript": "^1.1.0",
"ava": "^3.11.0",
"typescript": "^3.9.7"
},
"ava": {
"typescript": {
"rewritePaths": {
"/": "dist/"
},
"extensions": [
"ts"
]
},
"cache": false,
"failFast": true,
"failWithoutAssertions": true
}
}