-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (63 loc) · 1.6 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
{
"name": "domkeybinder",
"version": "1.0.8",
"description": "This helps to manage key biniding command ",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"keywords": [
"keybinder",
"keybinding",
"key",
"binding",
"keybind",
"keyborad",
"browser",
"dom",
"javascript"
],
"files": [
"dist",
"LICENSE",
"README.md"
],
"homepage": "https://github.com/Codad5/keybinder",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/Codad5/keybinder"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"build": "npm run build:ts && npm run build:cjs && npm run rollup",
"build:dev": "npm run test && tsc --outDir dist/beta && rollup -c beta.rollup.js",
"build:ts": "tsc",
"build:cjs": "tsc --module commonjs --outDir dist/cjs",
"prepare": "npm run build",
"prepublishOnly": "npm run test",
"babel": "babel cdn -d lib",
"rollup": "rollup -c"
},
"author": "Codad5,ptbysr",
"license": "ISC",
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@jest/globals": "^29.3.1",
"@types/jest": "^29.2.2",
"@types/lodash": "^4.14.189",
"@types/node": "^18.11.9",
"babel-jest": "^29.3.1",
"jest": "^29.3.1",
"jest-canvas-mock": "^2.4.0",
"jest-environment-jsdom": "^29.3.1",
"lodash": "^4.17.21",
"rollup": "^3.3.0",
"ts-jest": "^29.0.3",
"ts-loader": "^9.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"dependencies": {
"tslib": "^2.4.1"
}
}