This repository has been archived by the owner on Nov 10, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.79 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
{
"name": "ckeditor4-plugin-speak2type",
"version": "0.0.2",
"description": "Experimental speaking plugin.",
"main": "plugin.js",
"scripts": {
"postinstall": "dev/tasks/install.js",
"preuninstall": "dev/tasks/uninstall.js",
"lint": "eslint -c dev/config/eslint/default.json src/**/*.js",
"rollup": "rollup -c dev/config/rollup/default.js",
"build": "npm run lint && npm run rollup",
"watch": "watch 'npm run build' src",
"test": "npm run build && cd ../../ && bender server run -c plugins/speak2type/dev/config/bender/default.js",
"precommit": "npm run lint",
"preversion": "npm run build && git add -f plugin.js plugin.js.map",
"postversion": "git rm -r --cached plugin.js plugin.js.map && git commit -m \"[ci skip] Cleaning after release.\" && git push origin && git push origin --tags",
"prepublish": "in-publish && npm run build || exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Comandeer/ckeditor4-plugin-speak2type.git"
},
"keywords": [
"CKEditor4",
"plugin",
"speak to type",
"Speech API"
],
"files": [
"plugin.js",
"plugin.js.map",
"dialogs",
"icons",
"images",
"lang",
"dev/tasks"
],
"author": {
"name": "Comandeer",
"url": "https://www.comandeer.pl"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Comandeer/ckeditor4-plugin-speak2type/issues"
},
"homepage": "https://github.com/Comandeer/ckeditor4-plugin-speak2type#readme",
"devDependencies": {
"babel-plugin-external-helpers": "^6.8.0",
"babel-preset-es2015": "^6.14.0",
"eslint": "^4.1.0",
"husky": "^0.14.0",
"in-publish": "^2.0.0",
"rollup": "^0.45.0",
"rollup-plugin-babel": "^3.0.0",
"rollup-plugin-uglify": "^1.0.1",
"watch": "^1.0.1"
}
}