-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 849 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 849 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
{
"name": "redditit",
"version": "1.0.0",
"description": "Reddit Scraper",
"main": "dist",
"types": "dist",
"files": [
"dist",
"tests"
],
"scripts": {
"test": "node tests",
"build": "tsc -p .",
"prepare": "npm run build",
"lint": "eslint \"src/**/*.ts\"",
"prettier-format": "prettier --config .prettierrc \"src/**/*.ts\" --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Synthesized-Infinity/redditit.git"
},
"keywords": [
"reddit"
],
"author": "Sythesized Inifinity",
"license": "ISC",
"bugs": {
"url": "https://github.com/Synthesized-Infinity/redditit/issues"
},
"homepage": "https://github.com/Synthesized-Infinity/redditit#readme",
"dependencies": {
"axios": "^0.21.1"
},
"devDependencies": {
"@types/node": "^14.14.41"
}
}