UNPKG

rdkit

Version:

RDKit port to JS using emscripten

59 lines (58 loc) 1.65 kB
{ "name": "rdkit", "version": "0.5.1", "description": "RDKit port to JS using emscripten", "keywords": [ "rdkit" ], "main": "lib/index.js", "scripts": { "build": "npm run compile-emcc && npm run build-dist", "build-dist": "mkdir -p dist && cat javascript/pre.js out/rdkit.js javascript/post.js > dist/rdkit.js && cp out/rdkit.wasm dist/rdkit.wasm", "compile-debug": "npm run compile-emcc -- --debug", "compile-emcc": "node scripts/compile", "clean": "rm -rf dist out", "eslint": "eslint scripts lib __tests__", "eslint-fix": "npm run eslint -- --fix", "install-deps": "node scripts/install", "prepublishOnly": "npm run build", "test": "npm run build && npm run test-only", "test-coverage": "npm run test-jest -- --coverage", "test-jest": "jest", "test-only": "npm run test-jest && npm run eslint" }, "files": [ "dist", "lib" ], "jest": { "testEnvironment": "node", "testPathIgnorePatterns": [ "/node_modules/", "/deps/", "/old/" ] }, "repository": "cheminfo/RDKitjs", "author": "Guillaume Godin", "contributors": [ "Michaël Zasso", "Giuseppe Marco Randazzo" ], "license": "BSD-3-Clause", "bugs": { "url": "https://github.com/cheminfo/RDKitjs/issues" }, "homepage": "https://github.com/cheminfo/RDKitjs", "devDependencies": { "eslint": "^4.18.1", "eslint-config-cheminfo": "^1.17.0", "eslint-plugin-import": "^2.9.0", "eslint-plugin-jest": "^21.12.2", "fs-extra": "^5.0.0", "jest": "^22.3.0", "make-promises-safe": "^1.1.0", "request": "^2.83.0", "tar": "^4.4.0" } }