-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
82 lines (82 loc) · 2.31 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "resub",
"version": "2.3.2",
"description": "A library for writing React components that automatically manage subscriptions to data sources simply by accessing them.",
"author": "ReactXP Team <[email protected]>",
"scripts": {
"prepublishOnly": "npm run build",
"clean:dist": "rimraf dist*",
"build:types": "tsc -p tsconfig/types.json",
"build:es2015": "tsc -p tsconfig.json",
"build:cjs": "tsc -p tsconfig/cjs.json",
"build": "run-s clean:* lint build:*",
"karma:single-run": "karma start --singleRun",
"karma:watch": "karma start",
"test": "run-s clean:* karma:single-run",
"test:watch": "run-s clean:* karma:watch",
"lint": "eslint --config .eslintrc --ext .ts,.tsx src test",
"lint:fix": "npm run lint -- --fix"
},
"dependencies": {
"tslib": "^2.6.2"
},
"peerDependencies": {
"react": ">=16.11.0"
},
"devDependencies": {
"@cfaester/enzyme-adapter-react-18": "^0.7.1",
"@types/enzyme": "3.10.14",
"@types/jasmine": "4.3.6",
"@types/lodash": "4.14.199",
"@types/react": "18.2.22",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "6.7.2",
"@typescript-eslint/parser": "6.7.2",
"enzyme": "3.11.0",
"eslint": "8.50.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-react": "7.33.2",
"fork-ts-checker-webpack-plugin": "8.0.0",
"jasmine": "5.1.0",
"jasmine-core": "5.1.1",
"karma": "6.4.2",
"karma-chrome-launcher": "3.2.0",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"karma-sourcemap-loader": "0.4.0",
"karma-spec-reporter": "0.0.36",
"karma-webpack": "5.0.0",
"lodash": "^4.17.21",
"npm-run-all": "4.1.5",
"react": ">=18.2.0",
"react-dom": ">=18.2.0",
"rimraf": "5.0.1",
"ts-loader": "9.4.4",
"tslint": "6.1.0",
"typescript": "5.2.2",
"webpack": "5.88.2"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/ReSub"
},
"bugs": {
"url": "https://github.com/Microsoft/ReSub/issues"
},
"types": "dist-types/ReSub.d.ts",
"module": "dist-es2015/ReSub.js",
"main": "dist/ReSub.js",
"files": [
"dist",
"dist-es2015",
"dist-types"
],
"keywords": [
"react",
"flux",
"automatic",
"subscriptions",
"stores"
],
"license": "MIT"
}