-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
60 lines (60 loc) · 1.19 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
{
"name": "trivial-redux",
"version": "2.0.1",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "",
"repository": "https://github.com/dimailn/trivial-redux",
"scripts": {
"test": "jest",
"cov": "jest --coverage",
"build": "tsc -p tsconfig.json",
"pub": "npm run build && npm publish"
},
"license": "ISC",
"devDependencies": {
"axios": "^0.27.2",
"babel-jest": "^28.1.0",
"coffee-script": "^1.12.6",
"coveralls": "^3.0.2",
"jest": "^28.1.0",
"ts-jest": "^28.0.2"
},
"jest": {
"globals": {
"ts-jest": {
"exclude": [
"**/__mocks__/*"
],
"diagnostics": {
"exclude": [
"**/*.ts",
"**/*.test.ts"
]
},
"tsconfig": {
"isolatedModules": true
}
}
},
"moduleFileExtensions": [
"js",
"coffee",
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest",
"^.+\\.js$": "babel-jest"
},
"testMatch": [
"**/__tests__/**/*.test.js"
]
},
"dependencies": {
"immer": "^9.0.2",
"lodash.clonedeep": "^4.5.0",
"lodash.merge": "^4.6.2"
}
}