summaryrefslogtreecommitdiff
path: root/package.json
blob: fe71fd28f5df094674a70d1031f6df6e04370728 (plain) (blame)
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
{
  "name": "senpy",
  "version": "0.1.0",
  "description": "The Senpy Club API Wrapper for Node.js",
  "keywords": [
    "typescript",
    "node"
  ],
  "homepage": "https://npmjs.org/package/senpy",
  "bugs": {
    "email": "[email protected]",
    "url": "https://github.com/senpy-club/node-senpy/issues"
  },
  "license": "GPL-3.0-only",
  "author": {
    "url": "https://fuwn.me",
    "email": "[email protected]",
    "name": "Fuwn"
  },
  "main": "./dist/index.js",
  "repository": {
    "url": "https://github.com/senpy-club/node-senpy",
    "type": "git"
  },
  "scripts": {
    "build": "tsc -b",
    "test": "jest",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "pnpm run lint -- --fix",
    "prettier": "prettier .",
    "prettier:fix": "prettier --write .",
    "coverage": "pnpm run test -- --coverage",
    "prepublishOnly": "pinst --disable && pnpm run lint && pnpm run build",
    "postpublish": "pinst --enable"
  },
  "dependencies": {
    "node-fetch": "^3.2.3"
  },
  "devDependencies": {
    "@theoparis/eslint-config": "github:creepinson/eslint-config#update",
    "@types/jest": "27.4.1",
    "@types/node": "17.0.1",
    "esbuild": "0.14.27",
    "eslint": "8.11.0",
    "jest": "27.5.1",
    "pinst": "3.0.0",
    "prettier": "2.6.0",
    "ts-jest": "^27.1.2",
    "typescript": "4.6.2"
  },
  "exports": {
    "./": "./dist/index.js"
  },
  "type": "module",
  "types": "./dist/index.d.ts"
}