-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 955 Bytes
/
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
{
"name": "online-listener",
"version": "2.0.5",
"description": "RXJS Observable based tool to identify when your browser if offline/online",
"main": "dist/online-listener.umd.js",
"module": "dist/online-listener.esm.js",
"repository": "git@github.com:CanopyTax/online-listener.git",
"author": "Justin McMurdie",
"license": "MIT",
"keywords": [
"offline",
"event",
"RXJS"
],
"scripts": {
"build": "rimraf dist && rollup -c",
"watch": "rollup -c --watch"
},
"browserslist": [
"extends browserslist-config-canopy"
],
"peerDependencies": {
"rxjs": "^6.5.1"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"browserslist-config-canopy": "^3.1.0",
"rimraf": "^2.6.3",
"rollup": "^1.10.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-babel-minify": "^8.0.0",
"rollup-plugin-node-resolve": "^4.2.3"
}
}