1 | {
|
2 | "name": "wait-for-expect",
|
3 | "version": "3.0.2",
|
4 | "description": "Wait for expectation to be true, useful for integration and end to end testing",
|
5 | "main": "lib/index.js",
|
6 | "typings": "lib/index.d.ts",
|
7 | "scripts": {
|
8 | "test": "eslint --report-unused-disable-directives src/**/*.ts && jest",
|
9 | "build": "tsc --emitDeclarationOnly && babel src --out-dir lib --extensions \".ts,.tsx\"",
|
10 | "build:watch": "npm run build -- --watch",
|
11 | "type-check": "tsc --noEmit",
|
12 | "semantic-release": "semantic-release"
|
13 | },
|
14 | "repository": {
|
15 | "type": "git",
|
16 | "url": "https://github.com/TheBrainFamily/wait-for-expect.git"
|
17 | },
|
18 | "keywords": [
|
19 | "jest",
|
20 | "expect",
|
21 | "wait",
|
22 | "async",
|
23 | "await",
|
24 | "promise",
|
25 | "integration",
|
26 | "testing",
|
27 | "unit"
|
28 | ],
|
29 | "author": "Lukasz Gandecki",
|
30 | "license": "MIT",
|
31 | "bugs": {
|
32 | "url": "https://github.com/TheBrainFamily/wait-for-expect/issues"
|
33 | },
|
34 | "homepage": "https://github.com/TheBrainFamily/wait-for-expect#readme",
|
35 | "devDependencies": {
|
36 | "@babel/cli": "^7.0.0-beta.42",
|
37 | "@babel/core": "^7.0.0-beta.42",
|
38 | "@babel/plugin-proposal-class-properties": "^7.0.0-beta.42",
|
39 | "@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.42",
|
40 | "@babel/preset-env": "^7.0.0-beta.42",
|
41 | "@babel/preset-typescript": "^7.0.0-beta.42",
|
42 | "@types/eslint": "^4.16.0",
|
43 | "@types/eslint-plugin-prettier": "^2.2.0",
|
44 | "@types/jest": "^22.2.2",
|
45 | "@types/node": "^9.6.1",
|
46 | "@types/prettier": "^1.10.0",
|
47 | "@types/typescript": "^2.0.0",
|
48 | "@typescript-eslint/eslint-plugin": "^2.5.0",
|
49 | "@typescript-eslint/parser": "^2.5.0",
|
50 | "babel-core": "^7.0.0-0",
|
51 | "babel-jest": "^22.4.3",
|
52 | "babel-plugin-add-module-exports": "^1.0.0",
|
53 | "eslint": "^6.5.1",
|
54 | "eslint-config-airbnb-base": "^14.0.0",
|
55 | "eslint-config-prettier": "^2.9.0",
|
56 | "eslint-plugin-import": "^2.18.2",
|
57 | "eslint-plugin-prettier": "^2.6.0",
|
58 | "jest": "^22.4.3",
|
59 | "jest-serializer-ansi": "^1.0.3",
|
60 | "prettier": "^1.11.1",
|
61 | "semantic-release": "^15.12.0",
|
62 | "typescript": "~3.2.4"
|
63 | },
|
64 | "jest": {
|
65 | "snapshotSerializers": [
|
66 | "jest-serializer-ansi"
|
67 | ],
|
68 | "moduleDirectories": [
|
69 | "./node_modules",
|
70 | "./src"
|
71 | ],
|
72 | "moduleFileExtensions": [
|
73 | "ts",
|
74 | "tsx",
|
75 | "js",
|
76 | "jsx"
|
77 | ],
|
78 | "transform": {
|
79 | "^.+\\.(js|jsx|ts|tsx)$": "babel-jest"
|
80 | },
|
81 | "testRegex": "/src/.*\\.spec\\.(js|ts|tsx)$",
|
82 | "testURL": "http://localhost/"
|
83 | }
|
84 | }
|