-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 963 Bytes
/
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
{
"name": "reddi-wrapper-api-v1",
"version": "1.0.0",
"description": "A simple wrapper reddit api",
"main": "dist/Index.js",
"types": "dist/Index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "node_modules/.bin/ts-node src/index.ts",
"build": "node_modules/.bin/tsc"
},
"keywords": [],
"author": {
"name": "William Dutra",
"email": "[email protected]",
"url": "https://github.com/WilliamDutra"
},
"repository": {
"type": "git",
"url": "https://github.com/WilliamDutra/reddit-wrapper.git"
},
"bugs": {
"url": "https://github.com/WilliamDutra/reddit-wrapper/issues"
},
"homepage": "url",
"license": "ISC",
"devDependencies": {
"@types/node": "^16.7.1",
"@types/node-fetch": "^2.5.12",
"node-ts": "^5.1.2",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
},
"dependencies": {
"dotenv": "^10.0.0",
"node-fetch": "^2.6.1"
}
}