-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.61 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
{
"name": "shortcut.js",
"version": "1.0.3",
"description": "JavaScript shortcut handler for web apps. KISS, light and library free.",
"keywords": [
"javascript",
"shortcut",
"keyboard",
"event",
"es6-module"
],
"main": "src/Shortcut.js",
"scripts": {
"build": "webpack --config webpack/webpack.prod.js ",
"watch": "webpack --watch --config webpack/webpack.dev.js",
"web-server": "http-server -p 1337 -c-1 -o example.html",
"doc": "jsdoc -c doc/jsDoc.json",
"test": "karma start test/karma.config.js",
"testdev": "karma start test/karma.config.js --dev=true",
"beforecommit": "npm run test && npm run build && npm run doc"
},
"homepage": "https://github.com/ArthurBeaulieu/Shortcut.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ArthurBeaulieu/Shortcut.js.git"
},
"bugs": {
"url": "https://github.com/ArthurBeaulieu/Shortcut.js/issues"
},
"author": "Arthur Beaulieu",
"license": "GPL-3.0",
"devDependencies": {
"@babel/core": ">=7.16.0",
"@babel/preset-env": ">=7.16.4",
"babel-loader": ">=8.2.3",
"clean-webpack-plugin": ">=4.0.0",
"eslint": "^8.3.0",
"eslint-webpack-plugin": "^3.1.1",
"http-server": ">=14.0.0",
"jasmine": ">=3.10.0",
"jasmine-core": ">=3.10.1",
"jsdoc": ">=3.6.7",
"karma": ">=6.3.9",
"karma-chrome-launcher": ">=3.1.0",
"karma-firefox-launcher": ">=2.1.2",
"karma-jasmine": ">=4.0.1",
"karma-sourcemap-loader": ">=0.3.8",
"karma-webpack": ">=5.0.0",
"tui-jsdoc-template": ">=1.2.2",
"webpack": ">=5.64.4",
"webpack-cli": ">=4.9.1"
}
}