-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.07 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
{
"name": "redux-async-data",
"version": "2.0.2",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "babel lib --out-dir dist --extensions '.ts,.tsx'",
"declaration": "tsc -d"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meikidd/redux-async-data.git"
},
"keywords": [
"async",
"redux"
],
"author": "meikidd <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/meikidd/redux-async-data/issues"
},
"homepage": "https://github.com/meikidd/redux-async-data#readme",
"peerDependencies": {
"react": "^16.8.6",
"redux": "^4.0.1"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-transform-modules-umd": "^7.12.1",
"@babel/plugin-transform-react-jsx": "^7.12.12",
"@babel/preset-typescript": "^7.12.7",
"@types/react": "^16.8.10",
"typescript": "^3.2.2"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/preset-env": "^7.12.13"
}
}