-
Notifications
You must be signed in to change notification settings - Fork 120
/
package.json
86 lines (86 loc) · 2.07 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "tumblr.js",
"version": "5.0.0",
"description": "Official JavaScript client for the Tumblr API",
"main": "./lib/tumblr",
"type": "commonjs",
"exports": {
".": "./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": ">=18",
"npm": ">=9"
},
"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": ">=18",
"@types/oauth": "^0.9.1",
"form-data": "^4.0.0",
"oauth": "^0.10.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.9.0",
"@tsconfig/node18": "^18.2.4",
"@tsconfig/strictest": "^2.0.2",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@typescript-eslint/parser": "^8.0.0",
"chai": "^5.0.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.0.0",
"globals": "^15.9.0",
"mocha": "^10.2.0",
"nock": "^13.3.3",
"nyc": "^17.0.0",
"prettier": "^3.0.3",
"typedoc": "^0.26.2",
"typescript": "^5.5.3"
},
"files": [
"/lib/*.*js",
"/LICENSE",
"/types",
"CHANGELOG.md"
],
"volta": {
"node": "20.15.1"
}
}