-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
93 lines (93 loc) · 2.67 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
83
84
85
86
87
88
89
90
91
92
93
{
"name": "undux",
"version": "5.3.0",
"description": "Dead simple state management for React",
"main": "dist/src/index.js",
"module": "dist.esm/index.js",
"main:esnext": "dist.esm/index.js",
"typings": "dist/src/index.d.ts",
"author": "Boris Cherny <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/bcherny/undux.git"
},
"bugs": {
"url": "https://github.com/bcherny/undux/issues"
},
"homepage": "https://github.com/bcherny/undux#readme",
"scripts": {
"build": "npm run clean && npm run lint && tsc -d && npm run build:esm && flow focus-check src/index.js.flow && cp src/index.js.flow dist/src/index.js.flow",
"build:esm": "tsc -d -p ./tsconfig.esm.json",
"clean": "shx rm -rf dist dist.esm",
"format": "prettier --write src/** test/** && eslint --fix",
"lint": "eslint ./src/**/*.ts ./src/**/*.tsx ./test/**/*.ts ./test/**/*.tsx",
"profile:filesize": "webpack --config ./perf/filesize/webpack.config.js && cat ./perf/filesize/bundle.js | gzip | wc -c",
"prepublishOnly": "npm test",
"pretest": "npm run build",
"test": "jest"
},
"dependencies": {
"rxjs-observable": "^0.0.7"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.8",
"@types/jsdom": "^12.2.4",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/testing-library__react": "^10.2.0",
"@types/testing-library__user-event": "^4.2.0",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"babel-jest": "^29.7.0",
"eslint": "^8.54.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-react": "^7.33.2",
"flow-bin": "^0.222.0",
"global-jsdom": "^9.1.0",
"immutable": "^4.0.0-rc.12",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^22.1.0",
"prettier": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rxjs": "^7.8.1",
"shx": "^0.3.4",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"peerDependencies": {
"react": ">=16.0.0"
},
"keywords": [
"redux",
"flux",
"rx",
"reactive",
"simple",
"model",
"state",
"store"
],
"ava": {
"files": [
"./dist/test/test.js"
],
"verbose": true
},
"prettier": {
"semi": false,
"singleQuote": true
}
}