-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.28 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
94
95
96
{
"name": "tumblr.js",
"version": "5.0.1",
"description": "Official JavaScript client for the Tumblr API",
"main": "./lib/tumblr",
"type": "commonjs",
"exports": {
".": {
"types": "./types/tumblr.d.ts",
"default": "./lib/tumblr.js"
}
},
"types": "./types/tumblr.d.ts",
"scripts": {
"autoformat": "prettier --write .",
"format-check": "prettier --check .",
"typecheck": "tsc --build tsconfig.json",
"docs-site": "typedoc",
"lint": "eslint --report-unused-disable-directives lib test integration",
"prepublishOnly": "tsc --build tsconfig.lib.json --force",
"test": "mocha --timeout 100",
"test:coverage": "nyc npm run test",
"test:integration": "mocha ./integration/read-only",
"test:integration-write": "mocha ./integration/write --timeout=6000"
},
"engines": {
"node": ">=22",
"npm": ">=10"
},
"homepage": "https://github.com/tumblr/tumblr.js",
"repository": {
"type": "git",
"url": "git+https://github.com/tumblr/tumblr.js.git"
},
"keywords": [
"tumblr",
"api"
],
"author": "Tumblr",
"license": "Apache-2.0",
"contributors": [
{
"name": "Keith McKnight",
"email": "keith@mcknig.ht"
},
{
"name": "Bryan Irace",
"email": "bryan.irace@gmail.com"
},
{
"name": "John Crepezzi",
"email": "john.crepezzi@gmail.com"
}
],
"dependencies": {
"@types/node": ">=22",
"@types/oauth": "^0.9.1",
"form-data": "^4.0.4",
"oauth": "^0.10.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@prettier/plugin-oxc": "^0.2.0",
"@tsconfig/node18": "^18.2.4",
"@tsconfig/strictest": "^2.0.2",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.1",
"@typescript-eslint/parser": "^8.0.0",
"chai": "^6.0.1",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.0.1",
"globals": "^17.0.0",
"mocha": "^11.0.1",
"nock": "^14.0.4",
"nyc": "^18.0.0",
"prettier": "^3.7.0",
"typedoc": "^0.28.12",
"typescript": "^6.0.3"
},
"files": [
"/lib/*.*js",
"/LICENSE",
"/types",
"CHANGELOG.md"
],
"devEngines": {
"runtime": {
"name": "node",
"version": "^20.19.0 || ^22.13.0 || >=24",
"onFail": "warn"
}
},
"volta": {
"node": "22.21.1"
}
}