forked from solgenomics/BrAPI-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 780 Bytes
/
package.json
File metadata and controls
19 lines (19 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "@solgenomics/brapijs",
"version": "2.0.2",
"description": "BrAPI.js is a JavaScript client library for [BrAPI](https://brapi.org). It can be used either in the browser or within Node.js. It uses the [Fetch API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API) (or [node-fetch]() in Node.js) for AJAX calls. BrAPI.js also uses ES6 classes.",
"bugs": {
"url": "https://github.com/solgenomics/BrAPI.js/issues"
},
"repository": "github:solgenomics/BrAPI.js",
"license": "MIT",
"main": "build/BrAPI.js",
"scripts": {
"prepare": "rm -rf build && mkdir build && rollup -f umd -n BrAPI -o build/BrAPI.js -- main.js"
},
"author": "David Lyon <npm@dauglyon.com>",
"dependencies": {
"node-fetch": "2.6.1",
"rollup": "0.40"
}
}