-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.03 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "archivator",
"version": "1.0.2",
"description": "Ever wanted to archive your own copy of articles you enjoyed reading and to be able to search through them?",
"keywords": [
"bookmark",
"archive",
"offline-copy",
"crawler",
"downloader",
"node-website-scraper",
"archiving"
],
"homepage": "https://github.com/renoirb/archivator/tree/v3.x-dev#third-rewrite",
"repository": {
"type": "git",
"url": "https://github.com/renoirb/archivator.git"
},
"license": "MIT",
"bin": {
"archivator": "./archivator"
},
"author": {
"name": "Renoir Boulanger",
"email": "[email protected]"
},
"files": [
"dist",
"archivator",
"archivator.js",
"example.js",
"licenses.json",
"README.md"
],
"scripts": {
"analyze": "babel-node src/analyze.js",
"archive": "babel-node src/archive.js",
"dist": "babel src/ --minified -d dist/ -s",
"fix": "node_modules/.bin/xo --fix",
"lint": "node_modules/.bin/xo",
"release": "npx standard-version --release-as patch",
"test": "node_modules/.bin/mocha --compilers js:babel-core/register",
"watch": "babel src/ -d dist/ -w -s"
},
"xo": {
"esnext": true,
"ignores": [
"dist/**",
"example.js"
],
"plugins": [
"unicorn"
],
"rules": {
"func-names": 0
},
"space": 2
},
"dependencies": {
"async-file": "^2.0.2",
"babel-polyfill": "^6.23.0",
"cheerio": "^0.22.0",
"elasticsearch": "^12.1.3",
"gen-readlines": "^0.1.3",
"html-md-2": "^3.0.0",
"node-fetch": "^1.6.3",
"node-wordnet": "^0.1",
"occurences": "^1.4.8",
"wordnet-db": "^3.1",
"wordpos": "^0.1"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.18.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-preset-es2017": "^6.16.0",
"chai": "^3.5.0",
"eslint": "^3.10.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-unicorn": "^1.0.0",
"mocha": "^3.2.0",
"xo": "^0.17.1"
}
}