-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 2.02 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
{
"name": "tinymce-plugin-headersfooters",
"version": "1.0.0-rc.6",
"description": "A plugin for tinymce WYSIWYG HTML editor that allow to insert headers and footers - requires tinymce-plugin-paginate",
"main": "plugin.js",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-module-resolver": "^2.7.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"commander": "^2.9.0",
"eslint": "^4.8.0",
"grunt": "^0.4.5",
"grunt-browserify": "^4.0.1",
"grunt-bump": "^0.6.0",
"grunt-contrib-uglify": "^0.10.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-standard": "^2.0.0",
"ink-docstrap": "^1.1.2",
"inquirer": "^0.12.0",
"load-grunt-tasks": "^3.3.0",
"q": "^1.4.1",
"shelljs": "^0.6.0",
"standard": "^10.0.3"
},
"scripts": {
"build": "grunt",
"test": "echo \"Error: no test specified\" && exit 1",
"jsdoc": "jsdoc -p -d jsdoc -c jsdoc.json -t ./node_modules/ink-docstrap/template src/*",
"release-patch": "node ./scripts/release.js patch",
"release-minor": "node ./scripts/release.js minor",
"release-major": "node ./scripts/release.js major",
"prerelease": "node ./scripts/release.js prerelease",
"prerelease-patch": "node ./scripts/release.js prepatch",
"prerelease-minor": "node ./scripts/release.js preminor",
"prerelease-major": "node ./scripts/release.js premajor"
},
"repository": {
"type": "git",
"url": "git+https://github.com:rbecheras/tinymce-plugin-headersfooters.git"
},
"keywords": [
"tinymce",
"plugin",
"tinymce",
"plugin",
"headers",
"footers"
],
"author": "Rémi Becheras <rbecheras@sirap.fr>",
"license": "LGPL-2.1",
"bugs": {
"url": "https://github.com/rbecheras/tinymce-plugin-headersfooters/issues"
},
"homepage": "https://github.com/rbecheras/tinymce-plugin-headersfooters#readme",
"dependencies": {
"q": "^1.4.1"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"node_modules/**"
]
}
}