forked from wulkano/kap-giphy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 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
39
40
41
42
43
44
45
46
47
{
"name": "kap-gfycat",
"version": "1.2.3",
"description": "Share GIFs on gfycat",
"type": "commonjs",
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"scripts": {
"build": "npm run build:1 && npm run build:2",
"build:1": "tsc",
"build:2": "terser dist/index.js -cm -o dist/index.js; terser dist/gfycat-api.js -cm -o dist/gfycat-api.js",
"test": "xo && ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsejcksn/kap-gfycat.git"
},
"keywords": [
"kap-plugin",
"gfycat",
"gif",
"upload",
"share"
],
"author": "Jesse Jackson <npm@jcksn.org> (https://jcksn.org)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jsejcksn/kap-gfycat/issues"
},
"homepage": "https://github.com/jsejcksn/kap-gfycat#readme",
"devDependencies": {
"@jsejcksn/eslint-config": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"ava": "^2.3.0",
"eslint": "^6.8.0",
"kap-plugin-test": "^0.5.0",
"terser": "^4.6.3",
"typescript": "^3.7.5",
"xo": "^0.24.0"
},
"dependencies": {
"got": "^10.5.5"
}
}