-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.06 KB
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
{
"name": "pixiv-api-client",
"version": "0.27.0",
"description": "Promise based Pixiv API client for react native and node.js",
"main": "index.js",
"scripts": {
"test": "ava -r dotenv/config",
"lint": "eslint './index.js' './test.js'"
},
"author": {
"name": "alphasp",
"email": "gmerudotcom@gmail.com",
"url": "https://twitter.com/alphak87"
},
"repository": "alphasp/pixiv-api-client",
"license": "MIT",
"engines": {
"node": ">=4"
},
"files": [
"index.js"
],
"keywords": [
"pixiv",
"pixiv-api",
"pixiv-api-client",
"api-client"
],
"dependencies": {
"axios": "^0.21.1",
"blueimp-md5": "^2.12.0",
"moment": "^2.24.0",
"qs": "^6.2.1"
},
"devDependencies": {
"ava": "^0.16.0",
"dotenv": "^4.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-config-prettier": "^2.1.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-prettier": "^2.1.1",
"lodash.isobject": "^3.0.2",
"prettier": "^1.3.1",
"prettier-eslint": "^6.2.3"
}
}