forked from ClarityCafe/Sagiri
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.13 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "sagiri",
"version": "3.0.5",
"description": "A simple, lightweight and actually good JS wrapper for the SauceNAO API.",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"contributors": [
"sr229",
"Michael Mitchell <[email protected]> (https://ovyerus.com)"
],
"homepage": "https://github.com/ClarityCafe/Sagiri#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ClarityCafe/Sagiri"
},
"bugs": {
"url": "https://github.com/ClarityCafe/issues"
},
"funding": [
{
"type": "individual",
"url": "https://github.com/sponsors/Ovyerus"
},
{
"type": "individual",
"url": "https://ko-fi.com/capuccino"
}
],
"scripts": {
"build": "yarn lint && yarn test && yarn clean && yarn compile",
"clean": "rimraf dist",
"compile": "tsc",
"coverage": "jest --coverage",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"prepublishOnly": "yarn build",
"start": "yarn build -w",
"test": "jest",
"test:debug": "cross-env DEBUG=sagiri jest"
},
"keywords": [
"hitorigoto",
"sagiri",
"saucenao",
"simple",
"easy",
"api",
"functional",
"image",
"source"
],
"engines": {
"node": ">=10"
},
"dependencies": {
"bent": "^7.0.4",
"debug": "^4.1.1",
"form-data": "^3.0.0"
},
"devDependencies": {
"@types/bent": "7.0.2",
"@types/debug": "4.1.5",
"@types/jest": "25.2.1",
"@types/lodash.ismatch": "4.4.6",
"@types/node": "13.11.1",
"@typescript-eslint/eslint-plugin": "2.28.0",
"@typescript-eslint/parser": "2.28.0",
"cross-env": "7.0.2",
"eslint": "6.8.0",
"eslint-config-clarity": "0.3.3",
"eslint-plugin-import": "2.20.2",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-hooks": "3.0.0",
"eslint-plugin-sift": "0.3.0",
"jest": "25.3.0",
"lodash.ismatch": "4.4.0",
"nock": "12.0.3",
"parse-multipart": "1.0.4",
"prettier": "2.0.4",
"ts-jest": "25.3.1",
"ts-node": "8.8.2",
"typescript": "3.8.3"
},
"files": [
"dist"
]
}