forked from rdkit/rdkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.39 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"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"
]
}