-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 748 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 748 Bytes
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
{
"name": "redux-testing",
"version": "1.0.0",
"description": "Testing for Redux",
"repository": "https://github.com/hugohaggmark/redux-testing.git",
"author": "Hugo Häggmark <hugo.haggmark@gmail.com>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watchAll"
},
"devDependencies": {
"@types/jest": "29.2.3",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"jest": "29.3.1",
"redux": "4.2.0",
"ts-jest": "29.0.3",
"tslint": "6.1.3",
"typescript": "^4.9.3"
}
}