-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.31 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
{
"name": "ivent",
"version": "0.2.0",
"description": "Helper functions for browser event listener",
"license": "MIT",
"homepage": "https://github.com/nk-crew/ivent",
"author": "nK <https://nkdev.info>",
"main": "dist/ivent.cjs",
"module": "dist/ivent.esm.js",
"unpkg": "dist/ivent.min.js",
"files": [
"src",
"dist"
],
"scripts": {
"dev": "cross-env NODE_ENV=dev rollup --config --sourcemap --watch",
"build": "rollup --config --sourcemap",
"js-lint": "eslint src/",
"js-lint-fix": "eslint --fix src/",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git://github.com/nk-crew/ivent.git"
},
"bugs": {
"url": "https://github.com/nk-crew/ivent/issues"
},
"keywords": [
"events",
"addEventListener",
"removeEventListener",
"on",
"off",
"once"
],
"devDependencies": {
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.0",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"browserslist-config-nk": "^1.1.1",
"cross-env": "^7.0.3",
"eslint-config-nk": "^1.2.0",
"husky": "^8.0.3",
"json-file": "^0.1.0",
"lint-staged": "^15.1.0",
"prettier-config-nk": "^1.1.1",
"rollup": "^4.6.0",
"rollup-plugin-serve": "^2.0.2"
}
}