-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.38 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
{
"name": "tinymce-plugin-dynamicdate",
"version": "1.0.2",
"description": "Plugin for tinymce wysiwyg HTML editor that allow to insert a dynamic date",
"main": "plugin.js",
"devDependencies": {
"babel-eslint": "^8.0.1",
"eslint": "^4.7.2",
"eslint-plugin-html": "^3.2.2",
"grunt": "^0.4.5",
"grunt-browserify": "^5.0.0",
"grunt-bump": "^0.6.0",
"grunt-contrib-uglify": "^0.10.0",
"grunt-standard": "^2.0.0",
"ink-docstrap": "^1.1.4",
"jsdoc": "^3.4.0",
"load-grunt-tasks": "^3.3.0",
"shelljs": "^0.7.0",
"standard": "^10.0.3"
},
"scripts": {
"build": "grunt",
"test": "echo \"Error: no test specified\" && exit 1",
"jsdoc": "jsdoc -p --package package.json -d jsdoc -c jsdoc.json -t ./node_modules/ink-docstrap/template src/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com:rbecheras/dynamicdate.git"
},
"keywords": [
"tinymce",
"plugin",
"date"
],
"author": "Rémi Becheras <[email protected]>",
"license": "LGPL-2.1",
"bugs": {
"url": "https://github.com/rbecheras/dynamicdate/issues"
},
"homepage": "https://github.com/rbecheras/dynamicdate#readme",
"dependencies": {
"lodash.escape": "^4.0.0",
"lodash.unescape": "^4.0.0",
"moment": "^2.18.1"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"node_modules/**"
]
}
}