-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.67 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"jspm": {
"name": "redux-virtual-dom",
"dependencies": {
"deep-equal": "^1.0.1"
},
"devDependencies": {
"assert": "jspm-nodelibs-assert@^0.2.0",
"babel-plugin-transform-react-jsx": "^6.8.0",
"buffer": "jspm-nodelibs-buffer@^0.2.0",
"child_process": "jspm-nodelibs-child_process@^0.2.0",
"constants": "jspm-nodelibs-constants@^0.2.0",
"crypto": "jspm-nodelibs-crypto@^0.2.0",
"domain": "jspm-nodelibs-domain@^0.2.0",
"events": "jspm-nodelibs-events@^0.2.0",
"fs": "jspm-nodelibs-fs@^0.2.0",
"http": "jspm-nodelibs-http@^0.2.0",
"https": "jspm-nodelibs-https@^0.2.0",
"os": "jspm-nodelibs-os@^0.2.0",
"path": "jspm-nodelibs-path@^0.2.0",
"plugin-babel": "systemjs-plugin-babel@^0.0.17",
"process": "jspm-nodelibs-process@^0.2.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"redux": "^3.5.2",
"reselect": "^2.5.3",
"stream": "jspm-nodelibs-stream@^0.2.0",
"string_decoder": "jspm-nodelibs-string_decoder@^0.2.0",
"url": "jspm-nodelibs-url@^0.2.0",
"util": "jspm-nodelibs-util@^0.2.0",
"vidom": "^0.5.2",
"snabbdom": "^0.5.1",
"vm": "jspm-nodelibs-vm@^0.2.0",
"zlib": "jspm-nodelibs-zlib@^0.2.0"
},
"overrides": {
"npm:[email protected]": {
"dependencies": {
"readable-stream": "^2.0.2",
"pako": "~0.2.0"
},
"map": {
"_stream_transform": "readable-stream/transform"
}
},
"npm:[email protected]": {
"ignore": [
"test.js"
]
}
}
},
"name": "redux-virtual-dom",
"description": "connect redux to any virtual-dom library like react-redux ✨",
"version": "0.9.3",
"dependencies": {},
"devDependencies": {
"babel-core": "^6.10.4",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"coveralls": "^2.11.12",
"electron-prebuilt": "^1.2.2",
"jspm": "^0.17.0-beta.31",
"karma": "^1.1.2",
"karma-babel-preprocessor": "^6.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-coveralls": "^1.1.2",
"karma-firefox-launcher": "^1.0.0",
"karma-jspm": "^2.2.0",
"karma-mocha": "^1.1.1",
"karma-sinon": "^1.0.5",
"mocha": "^2.5.3",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0"
},
"jspmPackage": true,
"files": [
"package.json",
"README.md",
"README-ja.md",
"dist",
"lib"
],
"browser": "dist/redux-virtual-dom.js",
"main": "dist/redux-virtual-dom.js",
"format": "amd",
"scripts": {
"test": "./node_modules/karma/bin/karma start",
"bundle": "jspm bundle example/app.js -wid",
"unbundle": "jspm unbundle example/app.js",
"serve": "caddy & npm run bundle",
"servep": "caddy --conf Caddyfilep",
"build-dev": "jspm build lib/redux-virtual-dom.js dist/redux-virtual-dom.js --format umd",
"build": "jspm build lib/redux-virtual-dom.js dist/redux-virtual-dom.js --format umd --skip-source-maps --minify",
"build-example": "jspm build example/app.js docs/bundled.js --format umd --skip-source-maps --minify",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/subuta/redux-virtual-dom.git"
},
"keywords": [
"redux",
"virtual-dom",
"react-redux"
],
"author": "subuta <[email protected]> (https://github.com/subuta)",
"license": "MIT",
"registry": "npm",
"bugs": {
"url": "https://github.com/subuta/redux-virtual-dom/issues"
},
"homepage": "https://github.com/subuta/redux-virtual-dom#readme"
}