-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.63 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
{
"name": "simple-rxstate",
"version": "1.0.31",
"description": "Simple rxjs based state management system",
"author": "Allan Dollé <[email protected]> (https://allandolle.fr/)",
"homepage": "https://github.com/blephy/simple-rxstate#readme",
"bugs": "https://github.com/blephy/simple-rxstate/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/blephy/simple-rxstate.git"
},
"publishConfig": {
"access": "public",
"registry": " https://registry.npmjs.org"
},
"type": "module",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js"
}
},
"files": [
"/lib/**/*"
],
"types": "./lib/index.d.ts",
"scripts": {
"build": "yarn clean && tsc -b tsconfig.build.json",
"check:packagejson": "package-check",
"clean": "rm -rfv reports coverage build dist lib .eslintcache",
"commit": "cz",
"format:ci": "prettier --check .",
"format:fix": "prettier --write .",
"format:markdown": "markdownlint-cli2-fix '**/*.md'",
"postinstall": "husky install",
"lint:ci": "eslint . --ext js,ts --format json -o reports/eslint/simple-rxstate-eslint-junit.json",
"lint:fix": "eslint . --ext js,ts --fix",
"lint:markdown": "markdownlint-cli2 '**/*.md'",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"semantic-release": "semantic-release",
"spell:check": "cspell '**' '.**/**' '.*' --show-suggestions --config '.vscode/cspell.json'",
"spell:check:ci": "cspell lint '**' '.**/**' '.*' --show-suggestions --config '.vscode/cspell.json'",
"test": "jest",
"test:mutation": "stryker run",
"test:mutation:ci": "yarn test:mutation",
"test:unit": "yarn test",
"test:unit:ci": "jest --silent --coverage --runInBand --ci --bail false",
"ts:check": "tsc --noEmit"
},
"dependencies": {
"rxjs": "^7.5.6"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@commitlint/cz-commitlint": "^17.0.3",
"@skypack/package-check": "^0.2.2",
"@stryker-mutator/core": "^6.1.2",
"@stryker-mutator/jest-runner": "^6.1.2",
"@stryker-mutator/typescript-checker": "^6.1.2",
"@types/jest": "^28.1.6",
"@types/node": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"commitizen": "^4.2.5",
"cspell": "^6.4.1",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.3.0",
"eslint-plugin-arca": "^0.15.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.6.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-jsdoc": "^39.3.3",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-rxjs": "^5.0.2",
"eslint-plugin-sonarjs": "^0.15.0",
"eslint-plugin-sort-exports": "^0.7.0",
"eslint-plugin-unicorn": "^43.0.2",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.1",
"inquirer": "^8.2.4",
"jest": "^28.1.3",
"jest-junit": "^14.0.0",
"lint-staged": "^13.0.3",
"markdownlint-cli2": "^0.5.0",
"pinst": "^3.0.0",
"prettier": "^2.7.1",
"semantic-release": "^19.0.3",
"semantic-release-npm-github-publish": "^1.5.1",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16.15"
},
"keywords": [
"management",
"rxjs",
"state",
"state-management",
"store",
"typescript"
],
"release": {
"extends": "semantic-release-npm-github-publish"
}
}