-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.38 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
{
"author": "AustP",
"bugs": {
"url": "https://github.com/AustP/react-flux/issues"
},
"dependencies": {},
"description": "A React flux implementation with a focus on side-effects and global state.",
"devDependencies": {
"@testing-library/react": "^10.2.1",
"@types/jest": "^25.2.3",
"@types/react": "^16.9.35",
"jest": "^26.0.1",
"react": "^16.8.0",
"react-dom": "^16.8.0",
"ts-jest": "^26.1.0",
"tslint": "^6.1.2",
"typescript": "^3.9.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"files": [
"dist/*.*",
"index.js"
],
"homepage": "https://github.com/AustP/react-flux",
"keywords": [
"event",
"flux",
"management",
"react",
"state"
],
"license": "MIT",
"main": "index.js",
"name": "@aust/react-flux",
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0 || ^18.0.0"
},
"publishConfig": {
"access": "public"
},
"repository": "https://github.com/AustP/react-flux.git",
"scripts": {
"build": "yarn clean && tsc --listEmittedFiles && node --openssl-legacy-provider ./node_modules/.bin/webpack && cp ./build/src/*.* ./dist/",
"clean": "rm -rf ./build && rm -rf ./dist",
"lint": "tslint 'src/*.ts'",
"release": "yarn lint && yarn build && npm login && np",
"start": "tsc --watch",
"test": "jest --verbose"
},
"typings": "dist/flux.d.ts",
"version": "1.4.0"
}