1
0
Fork 0

Added package.json for npm

It will be a while yet before this appears in npm.

The build no longer fails on `make' by default.
master
Mike Gerwitz 2014-01-17 00:50:48 -05:00
parent 3abc910a9d
commit 7fe66235f9
4 changed files with 42 additions and 3 deletions

1
.gitignore vendored
View File

@ -8,3 +8,4 @@ Makefile.in
# generated by configure
config.*
Makefile
package.json

View File

@ -20,7 +20,10 @@
SUBDIRS = doc
.PHONY: todo
all-am: package.json todo
# placeholder
all:
todo:
@echo "You are too early! Liza is not ready; check back later."
@exit 1

View File

@ -23,5 +23,5 @@ AC_CONFIG_AUX_DIR([tools])
AM_INIT_AUTOMAKE([foreign])
# generate files from their *.in counterparts
AC_CONFIG_FILES([Makefile doc/Makefile])
AC_CONFIG_FILES([Makefile doc/Makefile package.json])
AC_OUTPUT

35
package.json.in 100644
View File

@ -0,0 +1,35 @@
{
"name": "liza",
"description": "A data collection, validation, and processing framework for JavaScript",
"version": "@VERSION@",
"author": "LoVullo Associates, Inc. (https://www.lovullo.com)",
"homepage": "https://github.com/lovullo/liza",
"repository": {
"type": "git",
"url": "https://github.com/lovullo/liza.git"
},
"engines": {
"node": ">0.0.0"
},
"dependencies": {},
"devDependencies": {},
"licenses": [
{
"type": "GPLv3+",
"url": "http://www.gnu.org/licenses/gpl.html"
}
],
"tags": [
"data collection",
"input validation",
"user input",
"user interface",
"validation",
"form"
]
}