-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·91 lines (91 loc) · 2.56 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
82
83
84
85
86
87
88
89
90
91
{
"name": "keyboardly",
"nameFull": "Keyboardly",
"version": "0.2.1",
"description": "A keyboardly library",
"license": "MIT",
"engines": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/victornpb/keyboardly.git"
},
"bugs": {
"url": "https://github.com/victornpb/keyboardly/issues"
},
"homepage": "https://github.com/victornpb/keyboardly",
"author": "victornpb",
"main": "dist/keyboardly.cjs.js",
"module": "dist/keyboardly.esm.js",
"unpkg": "dist/keyboardly.js",
"globalVar": "Keyboardly",
"scripts": {
"start": "rollup -c -w",
"dev": "rollup -c -w",
"build": "rollup -c && cp ./src/*.css ./dist ",
"prebuild": "rimraf dist",
"test": "npm run lint",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint src/**/*.js --fix",
"demo:dev": "npm run build && concurrently 'npm run dev' 'npm --prefix ./demo/vue serve'",
"demo:build": "npm --prefix ./demo/vue run build",
"docs:dev": "npm --prefix=docs run dev",
"docs:build": "npm --prefix=docs run build",
"docs:serve": "npm --prefix=docs run serve",
"ghpages": "npm run build && npm run demo:build && npm run docs:build",
"install": "npm --prefix=demo/vue install && npm --prefix=docs install",
"ci": "npm --prefix=demo/vue ci && npm --prefix=docs ci",
"version": "npm run build",
"release": "np"
},
"files": [
"dist"
],
"keywords": [
"keyboard",
"shortcut",
"hotkey",
"keystroke",
"navigation",
"macro"
],
"sideEffects": false,
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-private-methods": "^7.16.0",
"@babel/plugin-transform-object-assign": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.16.4",
"ansi-regex": ">=5.0.1",
"babel-plugin-array-includes": "^2.0.3",
"concurrently": "^6.4.0",
"eslint": "^8.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.1",
"np": "^7.6.3",
"rimraf": "^3.0.2",
"rollup": "^2.60.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-banner2": "^1.2.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^4.0.1",
"rollup-plugin-terser": "^7.0.2",
"tiny-dedent": "^1.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"npm run lint:fix",
"git add"
]
}
}