-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
63 lines (63 loc) · 1.49 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": "redux-iframe",
"description": "Build stateful micro frontends by sharing Redux state and actions between iframe modules and container applications",
"version": "1.1.0",
"license": "MIT",
"keywords": [
"redux",
"iframe",
"state"
],
"author": "[email protected]",
"repository": {
"type": "git",
"url": "https://github.com/Webfleet-Solutions/redux-iframe"
},
"main": "dist/redux-iframe.cjs.js",
"module": "dist/redux-iframe.esm.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "rollup -c",
"test": "cross-env TS_NODE_COMPILER_OPTIONS={\\\"module\\\":\\\"commonjs\\\"} nyc mocha",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"files": [
"dist"
],
"nyc": {
"all": true,
"extension": [
".ts",
".tsx"
],
"include": "src",
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html"
],
"temp-dir": "coverage"
},
"peerDependencies": {
"redux": ">=1"
},
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.4",
"chai": "^4.2.0",
"coveralls": "^3.0.8",
"cross-env": "^7.0.2",
"mocha": "^7.0.2",
"nyc": "^15.0.1",
"redux": "4.0.5",
"rollup": "^2.7.6",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.2",
"rollup-plugin-typescript2": "^0.27.0",
"source-map-support": "^0.5.16",
"ts-node": "^8.4.1",
"typescript": "^3.6.2"
}
}