-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 4.28 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@veams/rx-store",
"description": "The missing RxJS wrapper for Redux to provide a simple but powerful state management module.",
"version": "1.1.3",
"engines": {
"node": ">=10.0.0"
},
"author": {
"email": "[email protected]",
"name": "Sebastian Fitzner"
},
"repository": {
"type": "git",
"url": "https://github.com/veams/rx-store.git"
},
"browser": "lib-umd/index.js",
"main": "lib/index.js",
"module": "lib-esm/index.js",
"jsnext:main": "lib-esm/index.js",
"types": "./lib-esm/",
"scripts": {
"preversion": "npm test",
"version": "npm run prod:build && npm run tsc:types && git add .",
"postversion": "git push && git push --tags && npm publish --access public",
"clear:app": "rimraf lib/** && rimraf lib-esm && rimraf lib-umd",
"prestart": "npm run clear:app",
"start": "cross-env NODE_ENV=development rollup -c --watch",
"prebuild": "npm run clear:app",
"build": "rollup -c",
"ts2es": "tsc --project tsconfig.json --outDir lib-esm",
"dev:build": "cross-env NODE_ENV=development npm run build",
"prod:build": "cross-env NODE_ENV=production npm run build && npm run ts2es && npm run gzip",
"gzip": "gzip ./lib/**/*.js && gzip ./lib-umd/**/*.js",
"docs:build": "typedoc --out docs src --includeDeclarations --exclude \"**/+(*test*|node_modules)/**\" --readme README.md",
"lint:scripts": "eslint --fix \"src/**/*.ts\"",
"analyze:bundle": "source-map-explorer ./lib/index.js",
"prettify:scripts": "prettier --write \"src/**/*.{ts, test.ts}\"",
"test": "jest --runInBand --detectOpenHandles --no-cache --config ./jest.config.js",
"test:coverage": "cross-env BABEL_ENV=client jest --coverage",
"tsc:types": "tsc --project tsconfig.json --emitDeclarationOnly true --declaration true --declarationDir ./lib-esm/"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test"
}
},
"lint-staged": {
"src/**/*.ts": [
"npm run prettify:scripts",
"npm run lint:scripts",
"git add"
]
},
"dependencies": {
"fast-deep-equal": "^3.1.3",
"redux": "^4.0.5",
"rxjs": "^6.6.6"
},
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.1",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@babel/plugin-proposal-do-expressions": "^7.12.13",
"@babel/plugin-proposal-export-default-from": "^7.12.13",
"@babel/plugin-proposal-export-namespace-from": "^7.12.13",
"@babel/plugin-proposal-function-bind": "^7.12.13",
"@babel/plugin-proposal-function-sent": "^7.12.13",
"@babel/plugin-proposal-json-strings": "^7.12.13",
"@babel/plugin-proposal-logical-assignment-operators": "^7.12.13",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.0",
"@babel/plugin-proposal-numeric-separator": "^7.12.13",
"@babel/plugin-proposal-optional-chaining": "^7.13.0",
"@babel/plugin-proposal-pipeline-operator": "^7.12.13",
"@babel/plugin-proposal-throw-expressions": "^7.12.13",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "^7.13.5",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"cross-env": "^7.0.3",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"gzip-cli": "^1.2.0",
"husky": "^5.1.1",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.0",
"rollup": "^2.39.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^4.2.0",
"source-map-explorer": "^2.5.2",
"ts-jest": "^26.5.2",
"tslib": "^2.1.0",
"typedoc": "^0.20.28",
"typescript": "^4.2.2"
},
"licenses": [
{
"type": "MIT"
}
],
"keywords": [
"veams",
"redux",
"rxjs",
"store",
"connect",
"subscribe",
"observable",
"state management"
],
"peerDependencies": {
"redux": "^4.0.5"
}
}