-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.59 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
{
"name": "medium-editor-autofocus",
"version": "1.1.1",
"description": "Autofocus plugin for medium-editor",
"main": "src/Plugin.js",
"license": "MIT",
"scripts": {
"build": "npm run build:dev && npm run build:prod",
"build:dev": "webpack src/Plugin.js dist/medium-editor-autofocus.js --config ./webpack.config.dev.js --progress --colors",
"build:prod": "webpack src/Plugin.js dist/medium-editor-autofocus.min.js --config ./webpack.config.prod.js --progress --colors",
"test": "karma start --single-run --not-auto-watch karma.config.js"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-es2015-modules-umd": "^6.12.0",
"babel-preset-es2015": "^6.13.2",
"jasmine-core": "^2.4.1",
"karma": "^1.2.0",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"loader-utils": "^0.2.15",
"medium-editor": "^5.21.1",
"webpack": "^1.13.2"
},
"peerDependencies": {
"medium-editor": "^5.21.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dazorni/medium-editor-autofocus.git"
},
"keywords": [
"medium",
"editor",
"autofocus"
],
"author": "Sebastian Zorn <sebi.zorn@googlemail.com>",
"bugs": {
"url": "https://github.com/dazorni/medium-editor-autofocus/issues"
},
"homepage": "https://github.com/dazorni/medium-editor-autofocus#readme"
}