This repository has been archived by the owner on Apr 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.51 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
{
"name": "devrant-lite",
"version": "1.0.0",
"license": "MIT",
"description": "Tiny, fully-featured REST client for the unofficial devRant API",
"author": "Skayo (https://skayo.dev)",
"homepage": "https://me.skayo.dev/devrant-lite",
"source": "devrant.js",
"main": "dist/devrant.js",
"module": "dist/devrant.m.js",
"types": "index.d.ts",
"files": [
"dist",
"index.d.ts"
],
"dependencies": {
"cross-fetch": "^3.1.4"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.13.4",
"bundlesize": "^0.18.1",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.8.2",
"flow-bin": "^0.123.0",
"husky": "^4.2.5",
"jest": "^25.5.0",
"microbundle": "^0.11.0",
"typescript": "^3.8.2"
},
"scripts": {
"lint": "eslint --fix ./",
"prepare": "microbundle devrant.js && bundlesize",
"test": "eslint --fix . && jest --detectOpenHandles"
},
"husky": {
"hooks": {
"pre-commit": "eslint --fix ."
}
},
"jest": {
"testEnvironment": "node"
},
"bundlesize": [
{
"path": "dist/**.js",
"maxSize": "1 kB"
},
{
"path": "index.d.ts",
"maxSize": "2 kB"
}
],
"bugs": {
"url": "https://github.com/Skayo/devrant-lite/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Skayo/devrant-lite.git"
},
"keywords": [
"devrant",
"rest",
"api",
"devrant",
"node-devrant",
"rantscript",
"client",
"library"
]
}