-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.57 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
{
"name": "react-nedux",
"version": "1.0.16",
"description": "the next redux state management",
"main": "lib/react-nedux.js",
"unpkg": "dist/react-nedux.js",
"module": "es/react-nedux.js",
"types": "types/index.d.ts",
"bugs": "https://github.com/lucasmrdt/react-nedux/issues",
"files": [
"dist",
"lib",
"es",
"src",
"types"
],
"repository": {
"url": "https://github.com/lucasmrdt/react-nedux"
},
"authors": [
"Lucas Marandat <lucas.marandat@epitech.eu> (https://github.com/lucasmrdt)"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"check-types": "tsc --noEmit",
"build": "rollup -c",
"prepublish": "npm run check-types && npm run build"
},
"keywords": [
"nedux",
"react",
"react-nedux",
"react-state-management",
"state-management",
"react-store",
"typescript",
"nedux-provider"
],
"author": "lucasmrdt",
"license": "ISC",
"peerDependencies": {
"react": ">=16.12.0",
"nedux": ">=1.0.19"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@rollup/plugin-node-resolve": "^6.0.0",
"@rollup/plugin-replace": "^2.2.1",
"rollup": "^1.27.8",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.25.3",
"serialize-javascript": ">=2.1.1",
"@types/react": "^16.9.15",
"typescript": "^3.7.3"
},
"dependencies": {
"nedux": "^1.0.21"
}
}