-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 938 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
39
40
41
{
"name": "frinkiac-gif-generator",
"version": "1.0.0",
"description": "Generate Simpsons gifs based on a search term from frinkiac.com",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "mocha test/src --recursive"
},
"author": {
"name": "Sammy Griffiths"
},
"bugs": {
"url": "https://github.com/sammygriffiths/frinkiac-gif-generator/issues"
},
"license": "ISC",
"dependencies": {
"axios": "^1.7.7",
"string-similarity": "^4.0.4",
"word-wrap": "^1.2.5"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^10.7.3",
"sinon": "^7.3.2"
},
"homepage": "https://github.com/sammygriffiths/frinkiac-gif-generator",
"keywords": [
"simpsons",
"gif",
"generator",
"frinkiac",
"api",
"promise",
"node"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sammygriffiths/frinkiac-gif-generator.git"
}
}