-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.08 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
{
"name": "meme.js",
"version": "1.0.0",
"description": "API for searching really nice memes on the web",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist/ && babel ./ --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log,./package-lock.json,./README.md,./LICENSE --copy-files",
"start": "npm install && npm run build && node ./dist/src/index.js 8000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Leviosar/meme.js.git"
},
"keywords": [
"meme",
"knowyourmeme"
],
"author": "leviosar",
"license": "MIT",
"bugs": {
"url": "https://github.com/Leviosar/meme.js/issues"
},
"homepage": "https://github.com/Leviosar/meme.js#readme",
"dependencies": {
"axios": "^0.19.0",
"cheerio": "^1.0.0-rc.3",
"express": "^4.17.1",
"nodeyourmeme": "^2.0.0",
"puppeteer": "^1.20.0",
"slugify": "^1.3.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"rimraf": "^3.0.0"
}
}