ebird.js/package.json

35 lines
708 B
JSON
Raw Permalink Normal View History

2022-08-26 09:50:04 +02:00
{
2022-08-26 15:57:22 +02:00
"name": "@unclesamulus/ebird-api",
2022-08-26 09:50:04 +02:00
"version": "0.0.0",
2022-08-26 15:57:22 +02:00
"description": "Damn small node.js library to deal with v2 eBird API",
2022-08-26 09:50:04 +02:00
"main": "lib/index.js",
2022-08-26 15:57:22 +02:00
"private": false,
2022-08-26 09:50:04 +02:00
"scripts": {
2022-08-26 15:57:22 +02:00
"test": "jest",
"build": "babel src -d lib"
2022-08-26 09:50:04 +02:00
},
"repository": {
"type": "git",
"url": "https://forge.chapril.org/UncleSamulus/ebird.js"
},
"keywords": [
"eBird",
"API"
],
"author": "Samuel ORTION",
"license": "AGPL-3.0-or-later",
"devDependencies": {
2022-08-26 15:57:22 +02:00
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.13",
"dotenv": "^16.0.1",
2022-08-26 09:50:04 +02:00
"jest": "^29.0.0"
},
"dependencies": {
2022-08-26 15:57:22 +02:00
"axios": "^0.27.2"
},
"directories": {
"lib": "lib",
"test": "test"
2022-08-26 09:50:04 +02:00
}
}