UNPKG

farmos

Version:

A JavaScript library for working with farmOS data structures and interacting with farmOS servers.

57 lines (56 loc) 1.63 kB
{ "name": "farmos", "version": "2.0.0-beta.16", "description": "A JavaScript library for working with farmOS data structures and interacting with farmOS servers.", "main": "dist/cjs/farmOS.js", "module": "dist/esm/farmOS.js", "browser": "dist/umd/farmOS.js", "files": [ "dist/**" ], "scripts": { "test": "mocha --recursive", "pretest": "npm run build", "lint": "eslint --color --ext .js .", "tsc": "tsc", "build": "rm -rf dist/ && rollup -c", "prepare": "npm run build", "update-core-schemata": "node core_schemata/update-script.js", "build-api-ref": "echo '# API Reference\n' > docs/api.md && jsdoc2md -c jsdoc.conf.json . >> docs/api.md" }, "repository": { "type": "git", "url": "git+https://github.com/farmOS/farmOS.js.git" }, "keywords": [ "agriculture" ], "author": "farmOS team", "license": "MIT", "bugs": { "url": "https://github.com/farmOS/farmOS.js/issues" }, "homepage": "https://github.com/farmOS/farmOS.js#readme", "dependencies": { "axios": "^0.25.0", "ramda": "^0.27.1", "uuid": "^8.3.2" }, "devDependencies": { "@rollup/plugin-commonjs": "^21.0.1", "@rollup/plugin-json": "^4.1.0", "@rollup/plugin-node-resolve": "^13.1.1", "chai": "^4.2.0", "chai-as-promised": "^7.1.1", "chai-string": "^1.5.0", "dotenv": "^16.0.3", "eslint": "^8.7.0", "eslint-config-airbnb-base": "^15.0.0", "eslint-plugin-import": "^2.25.4", "jsdoc-to-markdown": "^7.1.0", "jsdoc-tsimport-plugin": "^1.0.5", "mocha": "^9.1.3", "rollup": "^2.61.1", "typescript": "^4.4.3" } }