This repository has been archived by the owner on Jun 13, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
93 lines (93 loc) · 2.83 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
87
88
89
90
91
92
93
{
"name": "snoots",
"version": "1.0.0-dev.29",
"description": "A modern, fully-featured, strongly-typed reddit api.",
"module": "dist/index.mjs",
"main": "dist/index.js",
"types": "./types/index.d.ts",
"license": "MIT",
"scripts": {
"prepare": "is-ci || husky install",
"build": "tsc",
"test": "jest",
"test:cover": "jest --collect-coverage",
"clean": "del-cli coverage dist docs types",
"lint": "npm run lint:check",
"lint:check": "npm-run-all lint:check:*",
"lint:check:eslint": "eslint \"**/*.ts\"",
"lint:check:prettier": "prettier --check \"**/*\"",
"lint:fix": "npm-run-all lint:fix:*",
"lint:fix:eslint": "eslint --fix \"**/*.ts\"",
"lint:fix:prettier": "prettier --write \"**/*\"",
"gendoc": "typedoc --treatWarningsAsErrors src/index.ts",
"prepack": "del-cli \"{dist,types}/**/__tests__\"",
"prepublishOnly": "npm run clean && npm run lint && npm run build"
},
"dependencies": {
"camelcase": "^6.3.0",
"debug": "^4.3.4",
"got": "^11.8.6",
"tslib": "^2.5.0"
},
"devDependencies": {
"@commitlint/cli": "17.6.3",
"@commitlint/config-conventional": "17.6.3",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.7",
"@semantic-release/npm": "10.0.3",
"@semantic-release/release-notes-generator": "11.0.1",
"@types/debug": "4.1.7",
"@types/jest": "29.5.1",
"@typescript-eslint/eslint-plugin": "5.59.5",
"@typescript-eslint/parser": "5.59.5",
"del-cli": "5.0.0",
"eslint": "8.40.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-comment-length": "0.9.3",
"eslint-plugin-deprecation": "1.4.1",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-sonarjs": "0.19.0",
"eslint-plugin-unicorn": "47.0.0",
"fast-check": "3.8.1",
"husky": "8.0.3",
"is-ci": "3.0.1",
"jest": "29.5.0",
"lint-staged": "13.2.2",
"nock": "13.3.1",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"semantic-release": "21.0.2",
"supports-color": "9.3.1",
"ts-jest": "29.1.0",
"typedoc": "0.24.7",
"typescript": "5.0.4"
},
"engines": {
"node": ">= 14"
},
"keywords": [
"reddit",
"snoo",
"snoowrap"
],
"files": [
"dist",
"types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/thislooksfun/snoots.git"
},
"author": "thislooksfun <tlf@thislooks.fun> (https://thislooks.fun)",
"bugs": {
"url": "https://github.com/thislooksfun/snoots/issues"
},
"homepage": "https://github.com/thislooksfun/snoots#readme"
}