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
parent
3abc910a9d
commit
7fe66235f9
|
@ -8,3 +8,4 @@ Makefile.in
|
|||
# generated by configure
|
||||
config.*
|
||||
Makefile
|
||||
package.json
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue