-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.23 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
{
"name": "redux-thunk-testing",
"version": "3.2.0",
"description": "Test utility and Snapshot testing for complex and nested redux-thunks",
"main": "./index.js",
"scripts": {
"build": "./build.sh",
"build:code": "babel src --out-dir build --extensions '.ts' --ignore '**/*.test.ts'",
"build:docs": "npx typedoc src/index.ts",
"build:types": "tsc --emitDeclarationOnly",
"clean": "rimraf build coverage docs",
"deploy": "./deploy.sh",
"lint:js": "eslint 'src/**/**?(.spec|).js'",
"lint:ts": "tsc --noEmit",
"test": "jest --coverage --runInBand",
"test:nocover": "jest",
"test:watch": "jest --watch",
"update:release-notes": "npx conventional-github-releaser -p angular",
"upload:coverage": "npx codecov",
"upload:docs": "npx gh-pages --dotfiles -d docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yeojz/redux-thunk-testing.git"
},
"keywords": [
"testing",
"functional",
"unit",
"async",
"middleware",
"redux",
"fsa",
"promises",
"actions",
"payload"
],
"author": "Gerald Yeo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yeojz/redux-thunk-testing/issues"
},
"homepage": "https://github.com/yeojz/redux-thunk-testing#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/preset-typescript": "^7.3.3",
"@types/jest": "^24.0.9",
"@typescript-eslint/eslint-plugin": "^1.6.0",
"@typescript-eslint/parser": "^1.6.0",
"babel-jest": "^24.1.0",
"eslint": "^5.15.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^24.1.0",
"prettier": "^1.16.4",
"rimraf": "^2.6.3",
"typescript": "^3.3.3333"
},
"dependencies": {
"pretty-format": "^24.3.0"
},
"jest": {
"coveragePathIgnorePatterns": [
"./examples",
"./tests"
],
"moduleDirectories": [
"./node_modules",
"./src"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "babel-jest"
}
}
}