-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.17 KB
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
{
"author": "leslie",
"dependencies": {
"@babel/runtime": "^7.11.0",
"hoist-non-react-statics": "^3.3.0",
"queue-evt": "^0.2.1",
"react": "^16.9.0",
"react-dom": "^16.9.0"
},
"description": "a subscribe-publish library for react",
"devDependencies": {
"@babel/cli": "^7.6.2",
"@babel/core": "^7.6.2",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.6.2",
"@babel/preset-react": "^7.0.0",
"@rollup/plugin-babel": "^5.1.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"cross-env": "^6.0.0",
"rollup": "^2.23.0",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-terser": "^6.1.0"
},
"keywords": [
"react",
"queue",
"publish",
"subscribe",
"message passing"
],
"license": "MIT",
"main": "dist/react-evt.cjs.js",
"module": "dist/react-evt.esm.js",
"unpkg": "dist/react-evt.js",
"name": "queue-evt-for-react",
"repository": {
"type": "git",
"url": "https://github.com/LeslieHoward/queue-evt-for-react.git"
},
"scripts": {
"build": "cross-env NODE_ENV=production rollup -c rollup.config.js"
},
"version": "0.1.0"
}