-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 1.51 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
{
"name": "nedux",
"version": "1.0.23",
"description": "the next redux state management",
"main": "lib/nedux.js",
"unpkg": "dist/nedux.js",
"module": "es/nedux.js",
"types": "types/index.d.ts",
"bugs": "https://github.com/lucasmrdt/nedux/issues",
"files": [
"dist",
"lib",
"es",
"src",
"types"
],
"repository": {
"url": "https://github.com/lucasmrdt/nedux"
},
"authors": [
"Lucas Marandat <[email protected]> (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",
"typescript",
"next-redux",
"store",
"state-management",
"functional",
"state"
],
"author": "lucasmrdt",
"license": "ISC",
"npmName": "nedux",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"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",
"typescript": "^3.7.3"
},
"dependencies": {
"rxjs": "^6.5.3"
}
}