-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.73 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
{
"name": "@propero/easy-store",
"version": "0.0.0",
"description": "Simple, intuitive, functional reactive stores for typescript",
"since": 2021,
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint --ignore-path .gitignore --ext .ts .",
"lint:fix": "eslint --ignore-path .gitignore --ext .ts . --fix"
},
"keywords": [
"propero",
"easy",
"store",
"reactive",
"functional",
"typescript"
],
"author": "Propero Team <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.4.2",
"jest-preset-typescript": "^1.2.0",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsup": "^6.6.0",
"typescript": "^4.9.5",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"semantic-release": "^20.0.2",
"tslib": "^2.4.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/propero-oss/easy-store.git"
},
"bugs": {
"url": "https://github.com/propero-oss/easy-store/issues"
},
"homepage": "https://github.com/propero-oss/easy-store#readme",
"publishConfig": {
"access": "public"
}
}