-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 3.54 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
126
127
128
{
"name": "storeon-observable",
"version": "2.0.0",
"description": "RxJS based module for Storeon which allows to create async actions",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"typings": "lib/types/index.d.ts",
"sideEffects": "false",
"files": [
"lib/",
"dist/"
],
"keywords": [
"Rx",
"Storeon",
"observable",
"async",
"event"
],
"repository": "git@github.com:distolma/storeon-observable.git",
"author": "Dmytro Mostovyi <djmakaron2009@gmail.com>",
"contributors": [
"Dmytro Mostovyi <djmakaron2009@gmail.com>",
"Paweł Majewski <majo44@gmail.com>"
],
"license": "MIT",
"scripts": {
"build": "run-p build:*",
"build:umd": "rollup -c",
"build:cjs": "tsc -p configs/tsconfig.cjs.json",
"build:esm": "tsc -p configs/tsconfig.esm.json",
"build:types": "tsc -p configs/tsconfig.types.json",
"test": "jest --coverage && run-p build:esm build:cjs && run-p lint size",
"size": "size-limit",
"lint": "eslint src/**/*.ts",
"doc:build": "typedoc --out doc --theme minimal --tsconfig configs/tsconfig.json src",
"prepublishOnly": "npm run build",
"release": "standard-version"
},
"peerDependencies": {
"storeon": "^3.0.0"
},
"dependencies": {
"rxjs": "^7.0.0"
},
"devDependencies": {
"@arkweid/lefthook": "^0.7.6",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@logux/eslint-config": "45.4.6",
"@size-limit/preset-small-lib": "^5.0.1",
"@types/jest": "^26.0.23",
"@types/node": "^14.14.37",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.30.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-let": "^1.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-unicorn": "^34.0.1",
"jest": "^27.0.6",
"npm-run-all": "^4.1.5",
"rollup": "^2.52.7",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"size-limit": "^5.0.1",
"standard-version": "^9.3.0",
"storeon": "^3.1.4",
"ts-jest": "^27.0.3",
"typedoc": "^0.21.2",
"typescript": "^4.3.5"
},
"engines": {
"node": ">=12"
},
"size-limit": [
{
"path": "lib/cjs/index.js",
"limit": "611 B",
"ignore": [
"rxjs"
]
},
{
"path": "lib/esm/index.js",
"limit": "464 B",
"ignore": [
"rxjs"
]
}
],
"eslintConfig": {
"extends": [
"@logux/eslint-config",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
"rules": {
"multiline-ternary": "off",
"node/no-extraneous-require": "off",
"prefer-let/prefer-let": "off",
"func-style": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/explicit-function-return-type": "off"
},
"parserOptions": {
"project": [
"./src/tsconfig.json",
"./test/tsconfig.json"
],
"tsconfigRootDir": "."
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}