-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.09 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
{
"name": "snooshift",
"version": "1.0.2",
"description": "A JavaScript wrapper for Reddit Pushshift API based on Snoowrap",
"scripts": {
"start": "node dist/",
"build": "tsc",
"watch": "nodemon test/test.ts",
"test": "mocha --timeout 100000000",
"prepublishOnly": "npm run build && npm run test"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/eben0/snooshift.git"
},
"keywords": [
"pushshift",
"reddit",
"api",
"wrapper",
"praw",
"psaw",
"snoo"
],
"author": "eben0 <eben0@users.noreply.github.com>",
"bugs": {
"url": "https://github.com/eben0/snooshift/issues"
},
"homepage": "https://github.com/eben0/snooshift",
"license": "MIT",
"dependencies": {
"axios": "^0.21.1",
"eventsource": "^1.0.7",
"snoowrap": "^1.22.0"
},
"devDependencies": {
"@types/node": "^14.14.31",
"@types/request": "^2.48.5",
"mocha": "^8.3.0",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
}
}