redux-astroglide 0.1.17 → 0.1.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/dist/package.json +0 -90
package/package.json
CHANGED
package/dist/package.json
DELETED
|
@@ -1,90 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "redux-astroglide",
|
|
3
|
-
"version": "0.1.12",
|
|
4
|
-
"description": "Taking the pain out of redux state management",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"keywords": [
|
|
7
|
-
"redux",
|
|
8
|
-
"flux",
|
|
9
|
-
"state",
|
|
10
|
-
"typescript",
|
|
11
|
-
"react"
|
|
12
|
-
],
|
|
13
|
-
"homepage": "https://github.com/Mulletware/redux-astroglide.git",
|
|
14
|
-
"bugs": {
|
|
15
|
-
"url": "https://github.com/Mulletware/redux-astroglide.git/issues"
|
|
16
|
-
},
|
|
17
|
-
"repository": {
|
|
18
|
-
"type": "git",
|
|
19
|
-
"url": "git+https://github.com/Mulletware/redux-astroglide.git"
|
|
20
|
-
},
|
|
21
|
-
"license": "MIT",
|
|
22
|
-
"author": "Dustin Schultz <dmanke@gmail.com>",
|
|
23
|
-
"main": "./index.js",
|
|
24
|
-
"module": "./dist/index.es.js",
|
|
25
|
-
"browser": "./dist/index.umd.js",
|
|
26
|
-
"types": "./dist/types",
|
|
27
|
-
"files": [
|
|
28
|
-
"dist"
|
|
29
|
-
],
|
|
30
|
-
"scripts": {
|
|
31
|
-
"start": "BUILD_ENV=dev npm run build:js -- --watch",
|
|
32
|
-
"build": "rimraf dist && npm run build:js && npm run build:types",
|
|
33
|
-
"build:js": "rollup -c",
|
|
34
|
-
"build:types": "tsc --emitDeclarationOnly",
|
|
35
|
-
"prepare": "husky install"
|
|
36
|
-
},
|
|
37
|
-
"lint-staged": {
|
|
38
|
-
"*.{js,jsx,ts,tsx}": [
|
|
39
|
-
"prettier --write",
|
|
40
|
-
"git add"
|
|
41
|
-
],
|
|
42
|
-
"*.{json,md,yml}": [
|
|
43
|
-
"prettier --write",
|
|
44
|
-
"git add"
|
|
45
|
-
]
|
|
46
|
-
},
|
|
47
|
-
"dependencies": {
|
|
48
|
-
"check-prop-types": "^1.1.2",
|
|
49
|
-
"lodash": "4.17.21",
|
|
50
|
-
"redux-injectable-middleware": "^1.0.5"
|
|
51
|
-
},
|
|
52
|
-
"devDependencies": {
|
|
53
|
-
"@babel/core": "^7.18.2",
|
|
54
|
-
"@babel/preset-env": "^7.18.2",
|
|
55
|
-
"@babel/preset-typescript": "^7.17.12",
|
|
56
|
-
"@commitlint/config-conventional": "17.0.3",
|
|
57
|
-
"@reduxjs/toolkit": "^1.9.2",
|
|
58
|
-
"@rollup/plugin-babel": "5.3.1",
|
|
59
|
-
"@rollup/plugin-commonjs": "^22.0.0",
|
|
60
|
-
"@rollup/plugin-json": "^4.1.0",
|
|
61
|
-
"@rollup/plugin-node-resolve": "^13.3.0",
|
|
62
|
-
"@semantic-release/changelog": "6.0.1",
|
|
63
|
-
"@semantic-release/commit-analyzer": "9.0.2",
|
|
64
|
-
"@semantic-release/git": "10.0.1",
|
|
65
|
-
"@semantic-release/github": "8.0.4",
|
|
66
|
-
"@semantic-release/npm": "9.0.1",
|
|
67
|
-
"@semantic-release/release-notes-generator": "10.0.3",
|
|
68
|
-
"@types/lodash": "4.14.182",
|
|
69
|
-
"husky": "^8.0.0",
|
|
70
|
-
"lint-staged": "^12.4.2",
|
|
71
|
-
"prettier": "^2.6.2",
|
|
72
|
-
"prop-types": "^15.8.1",
|
|
73
|
-
"rimraf": "^3.0.2",
|
|
74
|
-
"rollup": "^2.74.1",
|
|
75
|
-
"rollup-plugin-terser": "^7.0.2",
|
|
76
|
-
"semantic-release": "19.0.3",
|
|
77
|
-
"typescript": "^4.7.2"
|
|
78
|
-
},
|
|
79
|
-
"peerDependencies": {
|
|
80
|
-
"@reduxjs/toolkit": ">=1",
|
|
81
|
-
"prop-types": ">=12",
|
|
82
|
-
"react": ">=16",
|
|
83
|
-
"react-dom": ">=16",
|
|
84
|
-
"react-redux": ">=7",
|
|
85
|
-
"redux": ">=3"
|
|
86
|
-
},
|
|
87
|
-
"publishConfig": {
|
|
88
|
-
"access": "public"
|
|
89
|
-
}
|
|
90
|
-
}
|