forked from TheBrainFamily/wait-for-expect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.33 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@sadams/wait-for-expect",
"version": "0.0.0-development",
"description": "Wait for expectation to be true, useful for integration and end to end testing",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"lint": "eslint --report-unused-disable-directives src/**/*.ts",
"lint:fix": "npm run lint -- --fix",
"test:logic": "jest",
"test": "npm run lint && npm run test:logic",
"build": "tsc --emitDeclarationOnly && babel src --out-dir lib --extensions \".ts,.tsx\"",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/sadams/wait-for-expect.git"
},
"private": false,
"publishConfig": {
"access": "public"
},
"keywords": [
"jest",
"expect",
"wait",
"async",
"await",
"promise",
"integration",
"testing",
"unit"
],
"author": "Sam Adams",
"contributors": [
"Sam Adams",
"Lukasz Gandecki"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/sadams/wait-for-expect/issues"
},
"homepage": "https://github.com/sadams/wait-for-expect#readme",
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-typescript": "^7.24.7",
"@types/eslint": "^8.56.11",
"@types/eslint-plugin-prettier": "^3.1.3",
"@types/jest": "^22.2.2",
"@types/node": "^20.14.15",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"babel-core": "^7.0.0-0",
"babel-jest": "^22.4.3",
"babel-plugin-add-module-exports": "^1.0.4",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^22.4.3",
"jest-serializer-ansi": "^1.0.3",
"prettier": "^3.3.3",
"semantic-release": "^24.0.0",
"typescript": "^5.5.4"
},
"jest": {
"snapshotSerializers": [
"jest-serializer-ansi"
],
"moduleDirectories": [
"./node_modules",
"./src"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "babel-jest"
},
"testRegex": "/src/.*\\.spec\\.(js|ts|tsx)$",
"testURL": "http://localhost/"
}
}