UNPKG

pubchem

Version:

pubchem simplifies the data retrieval from the PubChem API.

77 lines (76 loc) 2.19 kB
{ "name": "pubchem", "version": "1.3.1", "description": "pubchem simplifies the data retrieval from the PubChem API.", "main": "lib/index.js", "module": "lib-esm/index.js", "types": "lib/index.d.ts", "files": [ "lib", "lib-esm", "src" ], "scripts": { "build": "npm run tsc-cjs && cheminfo-build --entry lib/index.js --root PubChem", "check-types": "tsc --noEmit", "clean": "rimraf lib lib-esm", "eslint": "eslint src", "eslint-fix": "npm run eslint -- --fix", "prepack": "npm run tsc", "prettier": "prettier --check src", "prettier-write": "prettier --write src", "test": "npm run test-only && npm run eslint && npm run prettier && npm run check-types", "test-only": "vitest run --coverage", "tsc": "npm run clean && npm run tsc-cjs && npm run tsc-esm", "tsc-cjs": "tsc --project tsconfig.cjs.json", "tsc-esm": "tsc --project tsconfig.esm.json", "watch": "npm run test-only -- --watch" }, "repository": { "type": "git", "url": "git+https://github.com/cheminfo/pubchem.git" }, "keywords": [ "Pubchem", "API", "Chemistry", "Data" ], "author": "Luc Patiny", "license": "MIT", "bugs": { "url": "https://github.com/cheminfo/pubchem/issues" }, "homepage": "https://github.com/cheminfo/pubchem#readme", "devDependencies": { "@types/jest": "^29.5.14", "@types/jsonpath": "^0.2.4", "@types/md5": "^2.3.5", "@vitest/coverage-v8": "^3.1.4", "cheminfo-build": "^1.2.1", "cross-env": "^7.0.3", "eslint": "^9.27.0", "eslint-config-cheminfo-typescript": "^18.0.1", "jest-matcher-deep-close-to": "^3.0.2", "md5": "^2.3.0", "prettier": "^3.5.3", "rimraf": "^6.0.1", "typescript": "^5.8.3", "vitest": "^3.1.4" }, "dependencies": { "deepmerge": "^4.3.1", "jsonpath": "^1.1.1", "ml-array-mean": "^1.1.6", "ml-array-median": "^1.1.6", "ml-array-standard-deviation": "^1.1.8", "physical-parser": "^0.4.0" }, "info": { "logo": "https://raw.githubusercontent.com/cheminfo/font/master/src/misc/pubchem.svg", "domain": [ "Organic Chemistry" ], "functionality": {} } }