-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.19 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
{
"name": "handle-events",
"version": "1.1.3",
"description": "Manages events listeners in the browser",
"author": "David Rivera <jherax@gmail.com>",
"main": "dist/handle-events.js",
"module": "src/main.js",
"browser": "dist/handle-events.js",
"unpkg": "dist/handle-events.js",
"keywords": [
"event",
"event-listener",
"event-handler",
"emitter",
"browser",
"listener",
"delegation",
"javascript"
],
"repository": {
"url": "git+https://github.com/jherax/handle-events.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/jherax/handle-events/issues"
},
"homepage": "https://github.com/jherax/handle-events#readme",
"license": "ISC",
"scripts": {
"eslint": "eslint src/",
"eslint:fix": "eslint src/ --fix",
"eslint-check": "eslint --print-config src/main.js | eslint-config-prettier-check",
"build:dev": "webpack --bail --config webpack/build.js",
"postbuild:dev": "node -e \"require('./scripts/replace')\"",
"build": "webpack --bail -p --env=production --config webpack/build.js",
"postbuild": "node -e \"require('./scripts/replace')\"",
"test": "jest --colors"
},
"engines": {
"node": ">=8.10",
"npm": ">=5.2.0"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/runtime": "^7.5.5"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"chalk": "^2.4.2",
"clean-webpack-plugin": "^3.0.0",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.0.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^3.0.2",
"jest": "^24.8.0",
"lint-staged": "^9.2.1",
"prettier": "^1.18.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix --cache --cache-location \".cache/\"",
"jest --bail --findRelatedTests",
"git add"
]
}
}