-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.72 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
{
"name": "@watch-state/decorators",
"version": "1.3.0-alpha.0",
"description": "Decorators to use watch-state",
"author": "Mikhail Lysikov <d8corp@mail.ru>",
"license": "MIT",
"main": "index.js",
"module": "index.es6.js",
"jsnext:main": "index.es6.js",
"types": "index.d.ts",
"private": true,
"homepage": "https://github.com/d8corp/watch-state-decorators",
"bugs": {
"url": "https://github.com/d8corp/watch-state-decorators/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/d8corp/watch-state-decorators.git"
},
"keywords": [
"watch",
"state",
"stateful",
"reaction",
"reactions",
"react",
"reactive",
"observe",
"observable",
"decorator",
"decorators",
"front-end"
],
"dependencies": {
"watch-state": "^3.5.0-alpha.0"
},
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^18.16.3",
"core-js": "^3.30.1",
"eslint": "^8.39.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"innetjs": "^2.5.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"scripts": {
"build": "innetjs release",
"test": "jest",
"test:coverage": "jest --coverage",
"release": "innetjs release -p",
"patch": "innetjs patch",
"minor": "innetjs minor",
"major": "innetjs major",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix"
}
}