Added package json and updated code-doc script

This commit is contained in:
Alex Tselegidis 2015-07-20 21:31:46 +02:00
parent 046f07d0da
commit 963c536719
2 changed files with 27 additions and 3 deletions

View File

@ -1,8 +1,8 @@
#!/bin/bash
#
# Bash script for the generation of code documentation.
#
# Bash script for the code documentation generation.
#
rm -rf doc
@ -15,4 +15,4 @@ php rsc/apigen.phar generate \
-d "doc/apigen" --exclude "*external*" --tree --todo --template-theme "bootstrap"
#jsdoc "src/assets/js" -d "doc/jsdoc"
node node_modules/.bin/jsdoc "src/assets/js" -d "doc/jsdoc"

24
package.json Normal file
View File

@ -0,0 +1,24 @@
{
"name": "easyappointments",
"version": "1.1.0",
"description": "Open Source Web Scheduler",
"repository": {
"type": "git",
"url": "git+https://github.com/alextselegidis/easyappointments.git"
},
"keywords": [
"php",
"javascript",
"mysql",
"html"
],
"author": "A.Tselegidis <alextselegidis@gmail.com>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/alextselegidis/easyappointments/issues"
},
"homepage": "http://easyappointments.org",
"devDependencies": {
"jsdoc": "^3.3.2"
}
}