-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 944 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 944 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "ducks-maker",
"version": "1.1.14",
"description": "Opinionated way to create redux ducks",
"main": "index.js",
"types": "src/index.ts",
"repository": "https://github.com/nschurmann/ducks-maker.git",
"author": "Nicolas Schurmann",
"license": "MIT",
"scripts": {
"lint": "tslint --project tsconfig.json",
"build": "tsc",
"test": "jest"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"testMatch": [
"**/(*.)+(spec|test).+(ts|tsx)"
],
"testPathIgnorePatterns": [
"/lib"
]
},
"devDependencies": {
"@types/jest": "^22.2.3",
"jest": "^23.1.0",
"ts-jest": "^22.4.6",
"tslint": "^5.10.0",
"typescript": "^2.8.4"
},
"dependencies": {
"redux": "^4.0.0"
}
}