Commit 18509eef authored by Romain Courteaud's avatar Romain Courteaud

Drop package.json

parent 3d3bbc52
...@@ -72,11 +72,6 @@ ${LINTDIR}/${TESTDIR}/jio/%.js: ${TESTDIR}/jio/%.js ...@@ -72,11 +72,6 @@ ${LINTDIR}/${TESTDIR}/jio/%.js: ${TESTDIR}/jio/%.js
${JSLINT} ${LINTOPTS} --predef QUnit --predef RSVP --predef jIO $< ${JSLINT} ${LINTOPTS} --predef QUnit --predef RSVP --predef jIO $<
cat $< > $@ cat $< > $@
${LINTDIR}/package.json: package.json
@mkdir -p $(@D)
${JSLINT} ${LINTOPTS} --maxlen 100 $<
cat $< > $@
${LINTDIR}/${EXAMPLEDIR}/%.js: ${EXAMPLEDIR}/%.js ${LINTDIR}/${EXAMPLEDIR}/%.js: ${EXAMPLEDIR}/%.js
@mkdir -p $(@D) @mkdir -p $(@D)
${JSLINT} ${LINTOPTS} --predef RSVP --predef window --predef QUnit --predef jIO --predef rJS $< ${JSLINT} ${LINTOPTS} --predef RSVP --predef window --predef QUnit --predef jIO --predef rJS $<
...@@ -88,8 +83,7 @@ ${LINTDIR}/${EXAMPLEDIR}/%.js: ${EXAMPLEDIR}/%.js ...@@ -88,8 +83,7 @@ ${LINTDIR}/${EXAMPLEDIR}/%.js: ${EXAMPLEDIR}/%.js
checktest: $(patsubst ${TESTDIR}/jio.storage/%.js, ${LINTDIR}/${TESTDIR}/jio.storage/%.js, $(wildcard ${TESTDIR}/jio.storage/*.js)) \ checktest: $(patsubst ${TESTDIR}/jio.storage/%.js, ${LINTDIR}/${TESTDIR}/jio.storage/%.js, $(wildcard ${TESTDIR}/jio.storage/*.js)) \
$(patsubst ${TESTDIR}/queries/%.js, ${LINTDIR}/${TESTDIR}/queries/%.js, $(wildcard ${TESTDIR}/queries/*.js)) \ $(patsubst ${TESTDIR}/queries/%.js, ${LINTDIR}/${TESTDIR}/queries/%.js, $(wildcard ${TESTDIR}/queries/*.js)) \
$(patsubst ${TESTDIR}/jio/%.js, ${LINTDIR}/${TESTDIR}/jio/%.js, $(wildcard ${TESTDIR}/jio/*.js)) \ $(patsubst ${TESTDIR}/jio/%.js, ${LINTDIR}/${TESTDIR}/jio/%.js, $(wildcard ${TESTDIR}/jio/*.js)) \
$(patsubst ${EXAMPLEDIR}/%.js, ${LINTDIR}/${EXAMPLEDIR}/%.js, $(wildcard ${EXAMPLEDIR}/*.js)) \ $(patsubst ${EXAMPLEDIR}/%.js, ${LINTDIR}/${EXAMPLEDIR}/%.js, $(wildcard ${EXAMPLEDIR}/*.js))
${LINTDIR}/package.json
############################################# #############################################
# Build # Build
......
...@@ -8,7 +8,8 @@ The documentation can be found on [https://jio.nexedi.com/](https://jio.nexedi.c ...@@ -8,7 +8,8 @@ The documentation can be found on [https://jio.nexedi.com/](https://jio.nexedi.c
### jIO Quickstart ### jIO Quickstart
git clone https://lab.nexedi.com/nexedi/jio.git git clone https://lab.nexedi.com/nexedi/jio.git
npm install cd jio.git
npm install jslint@0.9.2 jison@0.4.16
make make
......
{
"name": "jio",
"version": "v3.32.1",
"license": "LGPLv3",
"author": "Nexedi SA",
"contributors": [
"Tristan Cavelier <tristan.cavelier@tiolive.com>",
"Sven Franck <sven.franck@nexedi.com>"
],
"description": "Client-side JavaScript library to manage documents across multiple storages",
"main": "jio.js",
"directories": {
"example": "examples",
"test": "test"
},
"scripts": {
"lint": "make lint",
"prepublish": "make build"
},
"repository": {
"type": "git",
"url": "https://lab.nexedi.com/nexedi/jio.git"
},
"keywords": [
"io",
"input",
"output",
"cloud"
],
"devDependencies": {
"jslint": "0.9.2",
"jison": "0.4.16"
},
"engines": {
"npm": ">=1.3"
}
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment