-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 733 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 733 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
{
"name": "browser-bookmarks",
"version": "0.3.0",
"description": "Retrieve bookmarks from different browsers.",
"keywords": [
"browser",
"chrome",
"bookmarks",
"favorites"
],
"main": "index.js",
"author": "Vu Tran <vu@vu-tran.com>",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"test": "jest --coverage"
},
"devDependencies": {
"babel-eslint": "^7.0.0",
"babel-jest": "^18.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": "^18.1.0"
}
}