-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.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
{
"name": "redux-module-creator",
"version": "3.2.0",
"description": "A tool for creating not coupled, reusable and testable modules based on Redux.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "babel src --out-dir dist",
"tsc": "tsc -p tsconfig.json",
"test": "jest",
"fast-clean-install": "rm -rf ./node_modules && npm install",
"prepublishOnly": "npm run tsc",
"postpublish": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "https://github.com/Mtnt/reduxModuleCreator.git"
},
"keywords": [
"redux",
"module",
"encapsulation"
],
"author": "Kirill \"Mutant\" Glazunov <[email protected]>",
"license": "MIT",
"jest": {},
"peerDependencies": {
"redux": ">=4.x.x"
},
"dependencies": {
"es6-error": "4.1.1",
"nanoid": "4.0.0",
"redux": "4.0.5"
},
"devDependencies": {
"@babel/cli": "7.20.7",
"@babel/preset-env": "7.20.2",
"@types/node": "16.18.11",
"babel-jest": "29.4.0",
"jest": "29.4.0",
"lodash.clonedeep": "4.5.0",
"lodash.noop": "3.0.1",
"prettier": "2.6.1",
"typescript": "4.9.4",
"unit-tests-values-iterators": "0.2.1"
},
"files": [
"/dist",
"!/dist/tests"
]
}