-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.4 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.4 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
{
"name": "@codam/fast42",
"version": "2.1.7",
"description": "Fast (server-side) connector with rate-limiter for 42 API.",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/cjs/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js",
"types": "./dist/cjs/index.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/codam-coding-college/fast42.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"tsc": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"build": "npm run tsc",
"prepublishOnly": "npm run tsc",
"test": "jest"
},
"keywords": [],
"author": "Codam Coding College <it@codam.nl>",
"license": "ISC",
"dependencies": {
"@sergiiivzhenko/bottleneck": "2.19.7",
"node-cache": "^5.1.2",
"node-fetch": "^2.6.2",
"redis": "^3.1.2"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^10.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.3",
"@types/jest": "^28.1.8",
"@types/node-fetch": "^2.6.2",
"@types/redis": "^2.8.30",
"jest": "^28.0.0",
"semantic-release": "^21.0.5",
"ts-jest": "^28.0.8",
"typescript": "5.1.3"
}
}