-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
57 lines (57 loc) · 1.53 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
57
{
"name": "@fluffy-spoon/substitute",
"version": "2.0.0-beta.4",
"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"
}
],
"repository": {
"type": "git",
"url": "https://github.com/ffMathy/FluffySpoon.JavaScript.Testing.Faking.git"
},
"keywords": [
"NSubstitute",
"mocking",
"test",
"testing",
"faking"
],
"bugs": {
"url": "https://github.com/ffMathy/FluffySpoon.JavaScript.Testing.Faking/issues"
},
"engines": {
"node": ">=10"
},
"main": "dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "rm -rf dist && tsc",
"test": "npm run build -- -p spec && ava"
},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@sinonjs/fake-timers": "^11.2.2",
"@types/node": "^18.19.22",
"@types/sinonjs__fake-timers": "^8.1.5",
"ava": "^4.3.3",
"typescript": "^4.8.4"
},
"volta": {
"node": "18.19.1"
}
}