-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.09 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
{
"name": "store-track",
"version": "0.3.0",
"description": "Naive implementation of the state manager library Effector",
"author": {
"name": "Evgeny Petrov",
"email": "[email protected]"
},
"license": "MIT",
"sideEffects": false,
"private": true,
"main": "dist/index.js",
"scripts": {
"test": "eslint . && jest --coverage",
"build": "tsc"
},
"keywords": [
"data",
"store",
"state",
"reactive",
"functional",
"state manager"
],
"homepage": "https://lemarck.github.io/store-track",
"repository": {
"type": "git",
"url": "git+https://github.com/LeMarck/store-track.git"
},
"bugs": {
"url": "https://github.com/LeMarck/store-track/issues"
},
"files": [
"dist",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"devDependencies": {
"@eslint/js": "9.15.0",
"@types/jest": "29.5.14",
"eslint": "9.15.0",
"globals": "15.12.0",
"jest": "29.7.0",
"prettier": "3.3.3",
"ts-jest": "29.2.5",
"typescript": "5.6.3",
"typescript-eslint": "8.15.0"
},
"engines": {
"node": ">=18"
}
}