This repository was archived by the owner on Dec 23, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.17 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.17 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
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
89
90
91
92
93
{
"name": "@byters/rest.js",
"description": "",
"version": "1.0.0",
"main": "dist/index.js",
"module": "dist/index.es.js",
"browser": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"author": {
"name": "QuantumlyTangled",
"email": "yo@quantumlytangled.com",
"url": "https://quantumlytangled.com"
},
"license": "MIT",
"scripts": {
"lint": "eslint src --ext ts --fix",
"update": "yarn upgrade-interactive --latest",
"build": "rollup -c rollup.config.ts",
"prepublishOnly": "yarn build",
"test": "jest",
"test:coverage": "jest --coverage",
"sversion": "yarn standard-version"
},
"dependencies": {
"chainfetch": "^1.2.2",
"discord-api-types": "^0.6.0",
"ioredis": "^4.17.3",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@quantumly/eslint-config": "^1.1.0",
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@types/ioredis": "^4.17.4",
"@types/jest": "^26.0.7",
"@types/node": "^14.0.26",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.6.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"jest-circus": "^26.1.0",
"lint-staged": "^10.2.11",
"rollup": "^2.23.1",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.27.2",
"standard-version": "^8.0.2",
"ts-jest": "^26.1.3",
"ts-node": "^8.10.2",
"typedoc": "^0.18.0",
"typescript": "^3.9.7"
},
"files": [
"dist",
"!dist/tsconfig.tsbuildinfo"
],
"engines": {
"node": ">=14",
"npm": ">=6"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint-staged"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.ts": [
"eslint --fix --ext ts"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
}
}