-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·61 lines (61 loc) · 1.74 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
{
"name": "@dwtechs/ctrltab",
"version": "3.0.1",
"description": "Shortcut key bindings library with multiple keystroke detection.",
"keywords": [
"key binding",
"keystroke",
"shortcuts"
],
"homepage": "https://github.com/DWTechs/CtrlTab.js",
"main": "dist/ctrltab",
"types": "dist/ctrltab",
"bugs": {
"url": "https://github.com/DWTechs/CtrlTab.js/issues",
"email": ""
},
"repository": {
"type": "git",
"url": "https://github.com/DWTechs/CtrlTab.js"
},
"license": "MIT",
"author": {
"name": "Ludovic Cluber",
"url": "http://www.lcluber.com/",
"email": "http://www.lcluber.com/contact"
},
"contributors": [],
"scripts": {
"start": "",
"build": "node ./scripts/clear && tsc && npm run rollup && npm run uglify && node ./scripts/copy && npm run test",
"rollup:mjs": "rollup --config rollup.config.mjs.js",
"rollup:iife": "rollup --config rollup.config.iife.js",
"rollup": "npm run rollup:mjs && npm run rollup:iife",
"uglify": "uglifyjs build/ctrltab.iife.js --config-file uglify.config.json --output build/ctrltab.iife.min.js",
"test": ""
},
"files": [
"dist/"
],
"dependencies": {
"@dwtechs/checkhard": "2.16.0"
},
"devDependencies": {
"@babel/core": "7.11.6",
"@babel/preset-env": "7.11.5",
"@rollup/plugin-commonjs": "15.0.0",
"@rollup/plugin-node-resolve": "9.0.0",
"babel-jest": "24.9.0",
"core-js": "3.6.4",
"jest": "24.9.0",
"rollup": "2.37.1",
"rollup-plugin-analyzer": "3.3.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-progress": "1.1.2",
"rollup-plugin-size-snapshot": "0.12.0",
"rollup-plugin-sizes": "1.0.3",
"tslint": "5.20.1",
"typescript": "4.0.2",
"uglify-js": "3.10.4"
}
}