-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.23 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
48
49
{
"name": "explaintome-extension",
"version": "0.3.0",
"description": "browser extension for the ExplainToMe automatic web article summarizer.",
"main": "src/background.js",
"author": "Sang Han",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jjangsangy/ExplainToMeChrome/issues"
},
"engines": {
"chrome": ">=55",
"firefox": ">=45"
},
"homepage": "https://github.com/jjangsangy/ExplainToMeChrome#readme",
"bundleDependencies": {
"web-ext": "^2.0.0"
},
"prefix": "./src",
"config": {
"src": "src"
},
"scripts": {
"prepublish": "npm install -g web-ext && mkdir -p build",
"publish": "web-ext sign -s src -a build",
"start": "web-ext run -s src -a build",
"test": "web-ext lint -s src -a build"
},
"browser": [
"chrome",
"firefox"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jjangsangy/ExplainToMeChrome.git"
},
"private": false,
"keywords": [
"NLP",
"Chrome",
"Browser Extension",
"Firefox",
"Summarizer",
"TextRank"
],
"dependencies": {
"web-ext": "^2.0.0"
}
}