-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
42 lines (42 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
{
"name": "@codexteam/shortcuts",
"version": "1.2.0",
"description": "Library for handling keyboard shortcuts",
"main": "./dist/shortcuts.js",
"scripts": {
"test": "test",
"build:dev": "webpack --mode development",
"build:watch": "webpack --mode development --watch",
"build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codex-team/codex.shortcuts.git"
},
"author": "CodeX (https://codex.so)",
"license": "MIT",
"bugs": {
"url": "https://github.com/codex-team/codex.shortcuts/issues"
},
"homepage": "https://github.com/codex-team/codex.shortcuts#readme",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.4",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.3.4",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-class-display-name": "^2.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"eslint": "^5.16.0",
"eslint-loader": "^2.1.2",
"path": "^0.12.7",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2"
}
}