-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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
{
"name": "x-ray-chrome",
"version": "1.0.1",
"description": "x-ray chrome driver using puppeteer",
"keywords": ["scraper","x-ray","chrome","puppeteer","nodejs","scrape","cheerio"],
"author": {
"name": "Mike Antoniadis",
"email": "[email protected]"
},
"main": "build/index",
"types": "build/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"test": "jest --coverage",
"build": "npm run clean && tsc",
"clean": "rm -rf build",
"docs": "typedoc --theme markdown --includeDeclarations --excludeExternals --includes examples/ --out readme.md"
},
"repository": {
"type": "git",
"url": "git://github.com/ssbeefeater/x-ray-chrome.git"
},
"dependencies": {
"puppeteer": "^1.6.1"
},
"devDependencies": {
"@types/http-context": "^1.1.0",
"@types/jest": "^23.3.1",
"@types/lodash": "^4.14.115",
"@types/node": "^10.5.2",
"@types/puppeteer": "^1.5.1",
"@types/x-ray": "^2.3.2",
"concurrently": "^3.6.0",
"esnext": "^3.3.1",
"jest": "^23.4.0",
"ts-jest": "^23.0.1",
"tslint": "^5.11.0",
"typedoc-plugin-markdown": "^1.1.13",
"typescript": "^2.9.2",
"x-ray": "^2.3.3"
}
}