-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.35 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
{
"name": "@lacolaco/reactive-store",
"description": "A minimal implementation of state management with RxJS",
"version": "0.0.0",
"license": "MIT",
"repository": "https://github.com/lacolaco/reactive-store.git",
"private": false,
"scripts": {
"test": "jest --watch",
"test:ci": "jest",
"prebuild": "rimraf {dist,esm}",
"build": "run-p 'tsc:*'",
"tsc:main": "tsc -p tsconfig.json --outDir dist",
"tsc:esm2015": "tsc -p tsconfig.esm.json --outDir esm",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"lint": "yarn lint:eslint && yarn format:check",
"lint:eslint": "eslint 'src/**/*.ts'"
},
"main": "dist/index.js",
"exports": {
"import": "./dist/index.js",
"require": "./esm/index.js"
},
"types": "dist/index.d.ts",
"peerDependencies": {
"rxjs": "^6.0.0 || ^7.0.0"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "28.1.8",
"@types/node": "16.18.0",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"eslint": "8.18.0",
"eslint-config-prettier": "8.5.0",
"immer": "9.0.15",
"jest": "28.1.1",
"npm-run-all": "4.1.5",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"rxjs": "7.5.5",
"semantic-release": "19.0.3",
"ts-jest": "28.0.5",
"typescript": "4.7.4"
}
}