-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 1.88 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
{
"name": "@the1111mp/simple-store",
"version": "1.0.1",
"description": "Manage your data in the easiest way",
"keywords": [
"simple-store",
"react",
"reactjs",
"react-hooks",
"state-management"
],
"homepage": "https://github.com/1111mp/simple-store",
"bugs": {
"url": "https://github.com/1111mp/simple-store/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/1111mp/simple-store"
},
"author": "The1111mp@outlook.com",
"license": "MIT",
"main": "lib/index.js",
"module": "es/index.js",
"unpkg": "dist/index.min.js",
"typings": "es/index.d.ts",
"files": [
"dist",
"es",
"lib"
],
"scripts": {
"build": "rollup -c rollup.config.ts --configPlugin typescript",
"test:update": "jest --updateSnapshot",
"test": "jest"
},
"jest": {
"moduleDirectories": [
"node_modules"
],
"moduleFileExtensions": [
"js",
"jsx",
"ts",
"tsx",
"json"
],
"moduleNameMapper": {
"^src/(.*)": [
"<rootDir>/src/$1"
]
},
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"./jest.setup.ts"
],
"transform": {
"\\.(ts|tsx|js|jsx)$": "ts-jest"
}
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^14.0.0",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/jest": "^29.5.4",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.28.1",
"rollup-plugin-clear": "^2.0.7",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
}
}