-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.15 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
{
"name": "windowevents",
"version": "1.2.1",
"description": "Simple wrapper around common window events",
"main": "windowevents.min.js",
"license": "MIT",
"author": "Pete Droll <[email protected]> (https://github.com/pdroll/)",
"repository": {
"type": "git",
"url": "https://github.com/pdroll/windowevents"
},
"scripts": {
"lint": "standard src test",
"start": "rollup -c -w",
"build": "rollup -c",
"test": "jest --coverage --verbose",
"test:watch": "jest --watch"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"not dead",
"IE 10"
],
"dependencies": {
"covjs": "^2.0.1",
"throttle-debounce": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@rollup/plugin-babel": "^5.2.3",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.1.1",
"@testing-library/dom": "^7.29.4",
"@testing-library/jest-dom": "^5.11.9",
"jest": "^26.6.3",
"rollup": "^2.38.2",
"rollup-plugin-terser": "^7.0.2",
"standard": "^16.0.3"
},
"standard": {
"env": [
"browser",
"jest"
]
}
}