-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.1 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "ebird-client",
"version": "1.3.0",
"description": "A client to interact with eBird API 2.0",
"main": "src/index.js",
"types": "src/index.d.ts",
"files": [
"src/**/*.js",
"src/**/*.js.map",
"src/**/*.d.ts",
"src/**/*.ts"
],
"scripts": {
"build": "tsc",
"lint": "tslint --fix -c tslint.json 'src/**/*.ts'",
"test": "npm run build && ava test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dannyfritz/ebird-client.git"
},
"keywords": [
"ebird",
"cornell lab of ornithology",
"bird",
"birder",
"client",
"ornithology",
"avian"
],
"author": "Danny Fritz <dannyfritz@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dannyfritz/ebird-client/issues"
},
"homepage": "https://github.com/dannyfritz/ebird-client#readme",
"dependencies": {
"axios": "^0.18.0"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/lodash": "^4.14.123",
"ava": "^1.4.1",
"dotenv": "^7.0.0",
"lodash": "^4.17.11",
"tslint": "^5.14.0",
"typescript": "^3.4.1"
}
}