-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.45 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
58
59
60
61
62
63
{
"name": "mocktail-js",
"version": "1.9.5",
"description": "Painless mocking of deep objects.",
"main": "dist/mocktail.js",
"scripts": {
"build": "rollup -i src/mocktail.ts -p typescript -f umd -n mocktail -o dist/mocktail.js -m",
"test": "jest",
"lint": "eslint ./src --ext .ts"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/jakubbarczyk/mocktail-js.git"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.0",
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.38.0",
"jest": "^29.5.0",
"rollup": "^3.20.7",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testEnvironmentOptions": {
"url": "http://localhost"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"keywords": [
"bdd",
"deep",
"mock",
"object",
"plain",
"spec",
"tdd",
"test"
],
"engines": {
"node": ">=8"
},
"author": "Jakub Barczyk",
"license": "MIT",
"bugs": {
"url": "https://github.com/jakubbarczyk/mocktail-js/issues"
},
"homepage": "https://github.com/jakubbarczyk/mocktail-js#readme"
}