-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
41 lines (41 loc) · 944 Bytes
/
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
{
"name": "pixabay-api",
"version": "1.0.4",
"description": "API wrapper for pixabay",
"main": "dist/Index.js",
"homepage": "https://github.com/dderevjanik/pixabay-api",
"author": {
"name": "Daniel Derevjanik",
"email": "daniel.derevjanik@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dderevjanik/pixabay-api.git"
},
"keywords": [
"pixabay",
"api",
"free images",
"typescript"
],
"typescript": {
"definition": "dist/Index.d.ts"
},
"types": "dist/Index.d.ts",
"typings": "dist/Index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "tsc --watch",
"build": "tsc",
"lint": "tslint -c tslint.json --fix 'lib/**/*.ts'"
},
"license": "ISC",
"devDependencies": {
"ts-lint": "^4.5.1",
"typescript": "^2.4.1"
},
"dependencies": {
"@types/node": "^8.0.4",
"axios": "^0.16.2"
}
}