-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package moved to @nextjournal org
- Loading branch information
Showing
6 changed files
with
42 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ | |
/dist | ||
.idea | ||
debug | ||
nextjournal-lezer-clojure-*.tgz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
.idea | ||
debug | ||
.github | ||
nextjournal-lezer-clojure-*.tgz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,13 @@ | ||
MIT License | ||
|
||
Copyright (C) 2018 by Marijn Haverbeke <[email protected]> and others | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. | ||
Copyright 2022 Nextjournal GmbH. | ||
|
||
Permission to use, copy, modify, and/or distribute this software for any purpose | ||
with or without fee is hereby granted, provided that the above copyright notice | ||
and this permission notice appear in all copies. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH | ||
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND | ||
FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, | ||
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS | ||
OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER | ||
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF | ||
THIS SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
# lezer-clojure | ||
# @nextjournal/lezer-clojure [![NPM version](https://img.shields.io/npm/v/@nextjournal/lezer-clojure.svg)](https://www.npmjs.com/package/@nextjournal/lezer-clojure) | ||
|
||
This is a Clojure grammar for the | ||
[lezer](https://lezer.codemirror.net/) parser system. | ||
|
||
The code is licensed under an MIT license. | ||
The code is licensed under an ISC license. | ||
|
||
# Dev | ||
|
||
To watch & test, with [entr](http://eradman.com/entrproject/) installed run `npm run watch` | ||
|
||
# Previous Package Name | ||
|
||
This package has been previously released (unscoped) as [lezer-clojure](https://www.npmjs.com/package/lezer-clojure). |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{ | ||
"name": "lezer-clojure", | ||
"version": "1.0.0-rc.2", | ||
"name": "@nextjournal/lezer-clojure", | ||
"version": "1.0.0", | ||
"description": "lezer-based Clojure(Script) grammar", | ||
"main": "dist/index.cjs", | ||
"author": "Martin Kavalar <[email protected]>", | ||
"license": "MIT", | ||
"license": "ISC", | ||
"type": "module", | ||
"exports": { | ||
"import": "./dist/index.es.js", | ||
|
@@ -23,7 +23,7 @@ | |
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/nextjournal/lezer-clojure.git" | ||
"url": "git+https://github.com/nextjournal/lezer-clojure.git" | ||
}, | ||
"scripts": { | ||
"build": "lezer-generator src/clojure.grammar -o src/parser && rollup -c", | ||
|
@@ -32,5 +32,16 @@ | |
"test": "mocha --experimental-modules test/test-*.js", | ||
"on-change": "npm run build && npm run test", | ||
"watch": "git ls-files | entr npm run on-change" | ||
} | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/nextjournal/lezer-clojure/issues" | ||
}, | ||
"homepage": "https://github.com/nextjournal/lezer-clojure#readme", | ||
"directories": { | ||
"test": "test" | ||
}, | ||
"keywords": [ | ||
"lezer", | ||
"clojure" | ||
] | ||
} |