Files
rdkit/package.json
Michel Moreau 55b8ab9b76 Making RDKit minimallib (JS lib) available through the npm package manager (#4086)
* Npm publishing files - v1 in progress

* refactor .gitignore and package.json

* 2021.3.1-beta.0

* edit readme

* 2021.3.1-beta.1

* first version of read me and small tweak to docker build

* rdkit spelling uniform in readme

* 2021.3.1-beta.2

* update TOC

* add file to .gitignore

* 2021.3.1-beta.3

* add additional comment

* add back real readme

* add release tag example

* edit comment in git ignore

* add a link to unpkg.com

* 2021.3.1-beta.4

* final tweak to readme

* 2021.3.1-beta.5

* fix typo

* 2021.3.1-beta.6

* additional edits to README.md

* 2021.3.1-beta.7

* last minor readme edit

* 2021.3.1-beta.8

* add badges

* 2021.3.1-beta.9

* point homepage to minimallib readme

* 2021.3.1-beta.10

* 2021.3.1-beta.11

* make the js file the entry point

* 2021.3.1-beta.12

* fix release without dist

* 2021.3.1-beta.13

* add license badge to readme

* 2021.3.1-beta.14

* apply all reviews

getting started html file is now official demo
use npm version with --no-git-tag-version
use placeholder for version in npm package
add new line in all files
edit description and authors in package.json

* update live demo to be the getting started page

* add logging of version in readme example

* apply new set of review

fix author field for good
add back demo.html
edit readme accordingly
edit dockerfile to include GettingStarted.html in dist

* include proper getting started file in build

* edit publish process based on new PLACEHOLDER version

* update version in readme

* update toc

* add back placeholder

* remove ugly readme warning
2021-04-29 08:24:23 +02:00

41 lines
1.4 KiB
JSON

{
"name": "@rdkit/rdkit",
"version": "PLACEHOLDER",
"description": "JavaScript distribution of cheminformatics functionality from the RDKit - a C++ library for cheminformatics.",
"main": "Code/MinimalLib/dist/RDKit_minimal.js",
"scripts": {
"build": "bash Code/MinimalLib/scripts/build_rdkitjs.sh",
"prepublish": "bash Code/MinimalLib/scripts/npm_prepublish.sh",
"postpublish": "bash Code/MinimalLib/scripts/npm_postpublish.sh",
"resetVersion": "jq '.version = \"PLACEHOLDER\"' package.json > temp && mv temp package.json",
"test": "echo \"Tests are run during the docker build. See https://github.com/rdkit/rdkit/blob/master/Code/MinimalLib/docker/Dockerfile .\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rdkit/rdkit.git"
},
"keywords": [
"javascript",
"c-plus-plus",
"cheminformatics",
"rdkit",
"wasm"
],
"author": "Greg Landrum and the RDKit contributors",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/rdkit/rdkit/issues"
},
"homepage": "https://github.com/rdkit/rdkit/blob/master/Code/MinimalLib/README.md",
"files": [
"license.txt",
"package.json",
"ReleaseNotes.md",
"README.md",
"Code/MinimalLib/dist/demo.html",
"Code/MinimalLib/dist/GettingStartedInJS.html",
"Code/MinimalLib/dist/RDKit_minimal.js",
"Code/MinimalLib/dist/RDKit_minimal.wasm"
]
}