-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 828 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 828 Bytes
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
{
"name": "dext-github-plugin",
"version": "0.4.2",
"description": "Dext plugin to search for Github repositories.",
"keywords": [
"dext",
"dext-plugin",
"github",
"gh",
"repository"
],
"main": "index.js",
"author": "Vu Tran <vu@vu-tran.com>",
"license": "MIT",
"scripts": {
"lint": "eslint __tests__ index.js",
"test": "jest --coverage"
},
"files": [
"index.js",
"icon.png"
],
"dependencies": {
"got": "^6.3.0"
},
"devDependencies": {
"babel-jest": "^16.0.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"coveralls": "^2.11.14",
"eslint": "^3.7.1",
"eslint-config-airbnb-base": "^8.0.0",
"eslint-plugin-import": "^2.0.0",
"jest": "^16.0.1"
}
}