-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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
{
"name": "@discorddungeons/iqlclient",
"version": "1.0.1",
"description": "Package for interacting with ImageServer, written in TypeScript",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"files": [
"lib/"
],
"types": "lib/cjs/index.d.ts",
"scripts": {
"test": "jest",
"lint": "npx eslint --ext .ts ./src",
"lint:fix": "npx eslint --ext .ts ./src --fix",
"tsc": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"prepublish": "npm run tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DiscordDungeons/ImageServer-TS.git"
},
"keywords": [],
"author": "",
"license": "EUPL-1.2-or-later",
"bugs": {
"url": "https://github.com/DiscordDungeons/ImageServer-TS/issues"
},
"homepage": "https://github.com/DiscordDungeons/ImageServer-TS#readme",
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node-fetch": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"eslint": "^7.22.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"dependencies": {
"node-fetch": "^2.6.1"
}
}