-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 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
{
"name": "ts-mobx-basic-stores",
"version": "0.8.3",
"description": "The collection of helpers written with mobx and typescript.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint src/ tests/ --ext ts --fix",
"test": "jest --runInBand"
},
"author": "Konstantin Tarasov",
"files": [
"build",
"README.md"
],
"homepage": "https://github.com/terrasoff/ts-mobx-basic-stores",
"bugs": {
"url": "https://github.com/terrasoff/ts-mobx-basic-stores/issues"
},
"keywords": [
"mobx",
"typescript",
"helpers",
"observable",
"array",
"object",
"timer",
"dispose",
"toggle",
"selection",
"state",
"value"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^14.0.14",
"@typescript-eslint/eslint-plugin": "2.3.3",
"@typescript-eslint/parser": "2.19.2",
"eslint": "6.8.0",
"jest": "^25.2.1",
"ts-jest": "25.2.1",
"ts-loader": "^6.2.1",
"typescript": "3.9.2"
},
"dependencies": {
"mobx": "^5.15.4"
}
}