forked from Astrect/runescape-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.54 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
{
"name": "runescape-api",
"version": "2.1.6",
"description": "Simple wrapper for RuneScape APIs written in node.",
"author": "Joshua Filby <joshua@filby.me>",
"maintainers": [
"Astrect <astrect@astrect.me> (https://astrect.me)"
],
"keywords": [
"Oldschool",
"Old School",
"Runescape",
"OSRS",
"2007scape",
"Runescape 3"
],
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"build": "rimraf build && tsc",
"commit": "npx git-cz@4.2.0",
"cz": "npm run commit",
"dev": "rimraf build && tsc --watch",
"format": "prettier ./{src,__{tests,mocks}__}/{**,**/**}/*.{js,jsx,ts,tsx} --write",
"lint": "eslint src --ext=\".js,.jsx,.ts,.tsx\"",
"test": "jest"
},
"dependencies": {
"got": "^11.8.2",
"slugify": "^1.5.0"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
},
"repository": {
"type": "git",
"url": "https://github.com/astrect/runescape-api"
},
"bugs": {
"url": "https://github.com/astrect/runescape-api/issues"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"testMatch": [
"**/__tests__/**/*.+(ts|tsx|js)",
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
},
"license": "MIT"
}