-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
93 lines (93 loc) · 2.94 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
{
"name": "browser-event-utils",
"version": "3.0.0-beta.5",
"description": "A collection of higher-order functions for invoking common browser event methods",
"keywords": [
"utilities",
"browser-events",
"higher-order-functions",
"event-handling",
"preventdefault",
"stoppropagation",
"keyboard",
"keypress"
],
"author": {
"name": "himynameisdave",
"email": "d@velunny.com",
"url": "https://himynameisdave.com"
},
"main": "bin/index.cjs.js",
"module": "bin/index.esm.js",
"browser": "bin/index.umd.js",
"unpkg": "bin/index.umd.js",
"types": "bin/types/index.d.js",
"files": [
"bin"
],
"sideEffects": false,
"scripts": {
"build": "rm -rf ./bin/ && rollup -c rollup.config.ts",
"lint": "eslint ./src/ --ext .ts --ignore-pattern **/__tests__/**/* --report-unused-disable-directives",
"lint:fix": "eslint ./src/ --ext .ts --ignore-pattern **/__tests__/**/* --fix",
"test:js": "jest --coverage",
"test:pre-commit": "jest && eslint --ignore-pattern **/__tests__/**/* --fix --quiet --report-unused-disable-directives",
"test:coverage": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"viewCoverage": "npm run test:js && open ./coverage/lcov-report/index.html -a Google\\ Chrome",
"test:watch": "jest --watch",
"ci": "npm run lint && npm run test:js",
"test": "npm run lint && npm run test:js",
"release": "np --no-yarn"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@babel/preset-typescript": "^7.10.1",
"@types/jest": "^26.0.0",
"@typescript-eslint/eslint-plugin": "^3.3.0",
"@typescript-eslint/parser": "^3.3.0",
"babel-eslint": "^10.1.0",
"coveralls": "^3.1.0",
"eslint": "^7.3.0",
"eslint-config-himynameisdave": "^3.0.0-rc3",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-unicorn": "^20.1.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.11",
"np": "^6.2.4",
"rollup": "^2.17.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"typescript": "^3.9.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "npm run test:pre-commit"
},
"browserslist": [
"> 0.25%",
"not dead"
],
"repository": {
"type": "git",
"url": "git+https://github.com/himynameisdave/browser-event-utils.git"
},
"homepage": "https://himynameisdave.github.io/browser-event-utils/",
"license": "MIT",
"private": false
}