-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.44 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "RobustBlogScraper",
"private": true,
"version": "1.6.3",
"description": "A robust web scraper for extracting contents from web pages.",
"engines": {
"node": ">=8"
},
"main": "index.js",
"scripts": {
"build": "webpack --mode development",
"build-watch": "webpack --mode development --watch",
"build-production": "webpack --mode production --env.removeConsole true",
"cli-dev": "npm run build && npm run cli",
"server-dev": "npm-run-all --parallel build-watch server",
"cli": "node build/cli.js",
"server": "nodemon build/server.js",
"precommit": "lint-staged",
"lint": "npm run tslint && npm run eslint",
"fix": "npm run tslint-fix && npm run eslint-fix",
"eslint": "eslint *.js src __tests__",
"tslint": "tslint -p tsconfig.json -t verbose",
"eslint-fix": "eslint --fix *.js src __tests__",
"tslint-fix": "tslint --fix -p tsconfig.json -t verbose",
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"prettier": "prettier --write {src,__tests__}/**/*.{js,jsx,ts,tsx,json} *.{js,jsx,ts,tsx,json}",
"test": "jest",
"test-ci": "jest --config jest-ci-config.json"
},
"dependencies": {
"@types/bluebird": "3.5.20",
"@types/body-parser": "1.16.8",
"@types/cheerio": "0.22.7",
"@types/express": "4.11.1",
"@types/fs-readfile-promise": "3.0.0",
"@types/lodash": "4.14.106",
"@types/mkdirp": "0.5.2",
"@types/puppeteer": "1.2.1",
"@types/request": "2.47.0",
"@types/request-promise": "4.1.41",
"@types/sanitize-html": "1.14.0",
"@types/virtual-dom": "2.0.27",
"@types/xml2js": "0.4.2",
"bluebird": "3.5.1",
"body-parser": "1.18.2",
"cheerio": "1.0.0-rc.2",
"commander": "2.15.1",
"ejs": "2.5.8",
"express": "4.16.3",
"fs-readfile-promise": "3.0.1",
"html-to-vdom": "0.7.0",
"jsdom": "11.6.2",
"lodash": "4.17.13",
"mkdirp": "0.5.1",
"moment": "2.21.0",
"munkres-js": "1.2.2",
"puppeteer": "1.2.0",
"request": "2.85.0",
"request-promise": "4.2.2",
"sanitize-html": "1.18.2",
"tslib": "1.9.0",
"virtual-dom": "2.1.1",
"xml2js": "0.4.19",
"xml2js-xpath": "0.9.0"
},
"devDependencies": {
"@types/jest": "22.2.3",
"babel-eslint": "8.2.3",
"babel-minify-webpack-plugin": "0.3.1",
"eslint": "4.19.1",
"eslint-config-prettier": "2.9.0",
"eslint-config-standard": "11.0.0",
"eslint-plugin-import": "2.11.0",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-prettier": "2.6.0",
"eslint-plugin-promise": "3.7.0",
"eslint-plugin-standard": "3.1.0",
"espower-typescript": "8.1.3",
"husky": "0.14.3",
"jest": "22.4.3",
"lint-staged": "7.0.5",
"nodemon": "1.17.3",
"npm-run-all": "4.1.2",
"prettier": "1.12.1",
"ts-jest": "22.4.4",
"ts-loader": "4.2.0",
"tslint": "5.9.1",
"tslint-config-prettier": "1.12.0",
"tslint-microsoft-contrib": "5.0.3",
"tslint-plugin-prettier": "1.3.0",
"typescript": "2.8.3",
"webpack": "4.6.0",
"webpack-cli": "2.1.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"/node_modules/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
]
}
}