|
1 | 1 | { |
2 | | - "name": "browser-event-utils", |
3 | | - "version": "3.0.0-beta.2", |
4 | | - "description": "A collection of higher-order functions for invoking common browser event methods", |
5 | | - "keywords": [ |
6 | | - "utilities", |
7 | | - "browser-events", |
8 | | - "higher-order-functions", |
9 | | - "event-handling", |
10 | | - "preventdefault", |
11 | | - "stoppropagation", |
12 | | - "keyboard", |
13 | | - "keypress" |
14 | | - ], |
15 | | - "author": { |
16 | | - "name": "himynameisdave", |
17 | | - "email": "d@velunny.com" |
18 | | - }, |
19 | | - "main": "bin/index.cjs.js", |
20 | | - "module": "bin/index.esm.js", |
21 | | - "browser": "bin/index.umd.js", |
22 | | - "unpkg": "bin/index.umd.js", |
23 | | - "typings": "bin/index.d.js", |
24 | | - "files": [ |
25 | | - "bin" |
26 | | - ], |
27 | | - "sideEffects": false, |
28 | | - "scripts": { |
29 | | - "build": "rm -rf ./bin/ && rollup -c rollup.config.ts", |
30 | | - "lint": "eslint ./src/ --ext .ts --ignore-pattern **/__tests__/**/*", |
31 | | - "lint:fix": "eslint ./src/ --ext .ts --ignore-pattern **/__tests__/**/* --fix", |
32 | | - "test:js": "jest --coverage", |
33 | | - "test:coverage": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js", |
34 | | - "viewCoverage": "npm run test:js && open ./coverage/lcov-report/index.html -a Google\\ Chrome", |
35 | | - "test:watch": "jest --watch", |
36 | | - "ci": "npm run lint && npm run test:js", |
37 | | - "test": "npm run lint && npm run test:js", |
38 | | - "release": "np --no-yarn" |
39 | | - }, |
40 | | - "devDependencies": { |
41 | | - "@babel/core": "^7.7.2", |
42 | | - "@babel/preset-env": "^7.7.1", |
43 | | - "@babel/preset-typescript": "^7.7.2", |
44 | | - "@types/jest": "^24.0.23", |
45 | | - "@typescript-eslint/eslint-plugin": "^1.12.0", |
46 | | - "@typescript-eslint/parser": "^1.12.0", |
47 | | - "babel-eslint": "^10.0.3", |
48 | | - "coveralls": "^3.0.8", |
49 | | - "eslint": "5.16.0", |
50 | | - "eslint-config-7geese": "^2.5.2", |
51 | | - "eslint-plugin-filenames": "^1.3.2", |
52 | | - "eslint-plugin-import": "^2.18.0", |
53 | | - "eslint-plugin-jest": "^22.9.0", |
54 | | - "jest": "^24.9.0", |
55 | | - "np": "^5.1.3", |
56 | | - "rollup": "^1.27.4", |
57 | | - "rollup-plugin-babel": "^4.3.3", |
58 | | - "rollup-plugin-commonjs": "^10.1.0", |
59 | | - "rollup-plugin-json": "^4.0.0", |
60 | | - "rollup-plugin-node-resolve": "^5.2.0", |
61 | | - "rollup-plugin-sourcemaps": "^0.4.2", |
62 | | - "rollup-plugin-terser": "^5.1.2", |
63 | | - "rollup-plugin-typescript2": "^0.25.2", |
64 | | - "typescript": "^3.7.2" |
65 | | - }, |
66 | | - "browserslist": [ |
67 | | - "> 0.25%", |
68 | | - "not dead" |
69 | | - ], |
70 | | - "repository": { |
71 | | - "type": "git", |
72 | | - "url": "git+https://github.com/himynameisdave/browser-event-utils.git" |
73 | | - }, |
74 | | - "homepage": "https://himynameisdave.github.io/browser-event-utils/", |
75 | | - "license": "MIT", |
76 | | - "private": false |
| 2 | + "name": "browser-event-utils", |
| 3 | + "version": "3.0.0-beta.2", |
| 4 | + "description": "A collection of higher-order functions for invoking common browser event methods", |
| 5 | + "keywords": [ |
| 6 | + "utilities", |
| 7 | + "browser-events", |
| 8 | + "higher-order-functions", |
| 9 | + "event-handling", |
| 10 | + "preventdefault", |
| 11 | + "stoppropagation", |
| 12 | + "keyboard", |
| 13 | + "keypress" |
| 14 | + ], |
| 15 | + "author": { |
| 16 | + "name": "himynameisdave", |
| 17 | + "email": "d@velunny.com" |
| 18 | + }, |
| 19 | + "main": "bin/index.cjs.js", |
| 20 | + "module": "bin/index.esm.js", |
| 21 | + "browser": "bin/index.umd.js", |
| 22 | + "unpkg": "bin/index.umd.js", |
| 23 | + "types": "bin/types/index.d.js", |
| 24 | + "files": [ |
| 25 | + "bin" |
| 26 | + ], |
| 27 | + "sideEffects": false, |
| 28 | + "scripts": { |
| 29 | + "build": "rm -rf ./bin/ && rollup -c rollup.config.ts", |
| 30 | + "lint": "eslint ./src/ --ext .ts --ignore-pattern **/__tests__/**/*", |
| 31 | + "lint:fix": "eslint ./src/ --ext .ts --ignore-pattern **/__tests__/**/* --fix", |
| 32 | + "test:js": "jest --coverage", |
| 33 | + "test:coverage": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js", |
| 34 | + "viewCoverage": "npm run test:js && open ./coverage/lcov-report/index.html -a Google\\ Chrome", |
| 35 | + "test:watch": "jest --watch", |
| 36 | + "ci": "npm run lint && npm run test:js", |
| 37 | + "test": "npm run lint && npm run test:js", |
| 38 | + "release": "np --no-yarn" |
| 39 | + }, |
| 40 | + "devDependencies": { |
| 41 | + "@babel/core": "^7.7.7", |
| 42 | + "@babel/preset-env": "^7.7.7", |
| 43 | + "@babel/preset-typescript": "^7.7.7", |
| 44 | + "@types/jest": "^24.0.25", |
| 45 | + "@typescript-eslint/eslint-plugin": "^1.12.0", |
| 46 | + "@typescript-eslint/parser": "^1.12.0", |
| 47 | + "babel-eslint": "^10.0.3", |
| 48 | + "coveralls": "^3.0.9", |
| 49 | + "eslint": "5.16.0", |
| 50 | + "eslint-config-7geese": "^2.5.2", |
| 51 | + "eslint-plugin-filenames": "^1.3.2", |
| 52 | + "eslint-plugin-import": "^2.18.0", |
| 53 | + "eslint-plugin-jest": "^22.9.0", |
| 54 | + "jest": "^24.9.0", |
| 55 | + "np": "^5.2.1", |
| 56 | + "rollup": "^1.29.0", |
| 57 | + "rollup-plugin-babel": "^4.3.3", |
| 58 | + "rollup-plugin-commonjs": "^10.1.0", |
| 59 | + "rollup-plugin-json": "^4.0.0", |
| 60 | + "rollup-plugin-node-resolve": "^5.2.0", |
| 61 | + "rollup-plugin-sourcemaps": "^0.5.0", |
| 62 | + "rollup-plugin-terser": "^5.1.3", |
| 63 | + "rollup-plugin-typescript2": "^0.25.3", |
| 64 | + "typescript": "^3.7.4" |
| 65 | + }, |
| 66 | + "browserslist": [ |
| 67 | + "> 0.25%", |
| 68 | + "not dead" |
| 69 | + ], |
| 70 | + "repository": { |
| 71 | + "type": "git", |
| 72 | + "url": "git+https://github.com/himynameisdave/browser-event-utils.git" |
| 73 | + }, |
| 74 | + "homepage": "https://himynameisdave.github.io/browser-event-utils/", |
| 75 | + "license": "MIT", |
| 76 | + "private": false |
77 | 77 | } |
0 commit comments