-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 864 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 864 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
38
39
{
"name": "dext-hackernews-plugin",
"version": "0.3.2",
"description": "Dext plugin to search for stories on Hacker News.",
"keywords": [
"dext",
"dext-plugin",
"hacker news",
"hn",
"y-combinator",
"yc"
],
"main": "index.js",
"files": [
"icon.png",
"index.js"
],
"author": "Vu Tran <vu@vu-tran.com>",
"license": "MIT",
"dependencies": {
"got": "^6.3.0"
},
"scripts": {
"lint": "eslint index.js",
"test": "jest --coverage",
"test-watch": "jest --watch"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"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.3.1",
"eslint-plugin-import": "^1.13.0",
"jest": "^16.0.1"
}
}