forked from made-by-traxam/patreon.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 984 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 984 Bytes
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
{
"name": "patreon.js",
"version": "0.2.0",
"description": "JS/TS wrapper for the Patreon ReST API",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "npx semistandard & npx jest",
"build": "npx tsc",
"docs": "npx typedoc",
"dump": "npx ts-node ./tests/dump.ts",
"lint": "semistandard"
},
"repository": {
"type": "git",
"url": "git://github.com/made-by-traxam/patreon.js.git"
},
"keywords": [
"patreon",
"api",
"wrapper"
],
"author": "traxam",
"license": "MIT",
"bugs": {
"url": "https://github.com/made-by-traxam/patreon.js/issues"
},
"homepage": "https://github.com/made-by-traxam/patreon.js#readme",
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/request": "^2.48.8",
"dotenv": "^16.0.3",
"jest": "^29.5.0",
"request": "^2.88.2",
"semistandard": "^16.0.1",
"ts-jest": "^29.1.0",
"typedoc": "^0.24.7",
"typescript": "^5.0.4"
}
}