forked from webhacking/remote-screen-capture
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.73 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
{
"name": "remote-screen-capture",
"version": "1.0.10",
"author": "Hax0r <a@hax0r.info>",
"description": "Capture screenshots using selenium",
"main": "./dist/index.js",
"types": "./dist/index.ts",
"repository": {
"type": "git",
"url": "https://github.com/webhacking/remote-screen-capture.git"
},
"bugs": {
"url": "https:/github.com/webhacking/remote-screen-capture/issues"
},
"homepage": "https:/github.com/webhacking/remote-screen-capture",
"scripts": {
"format": "./node_modules/.bin/prettier --write \"**/*.ts\"",
"test": "./node_modules/.bin/jest --testPathIgnorePatterns dist",
"coverage": "./node_modules/.bin/jest --coverage --testPathIgnorePatterns dist",
"post-coverage": "./node_modules/.bin/nyc report --reporter=json > coverage/coverage.json",
"build": "./node_modules/.bin/tsc"
},
"keywords": [
"capture",
"remote",
"screen-capture",
"capture-from-url",
"screenshot",
"node"
],
"license": "ISC",
"dependencies": {
"chromedriver": "74.0.0",
"rxjs": "^6.5.1",
"selenium-webdriver": "^4.0.0-alpha.1",
"ts-node": "^8.1.0"
},
"devDependencies": {
"@types/chromedriver": "^2.38.0",
"@types/jest": "^24.0.13",
"@types/selenium-webdriver": "^4.0.0",
"codecov": "^3.5.0",
"jest": "24.8.0",
"nyc": "^14.1.1",
"prettier": "1.17.0",
"ts-jest": "24.0.0",
"tslint": "5.17.0",
"tslint-config-prettier": "1.18.0",
"typescript": "^3.5.1"
},
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "\\.spec\\.ts$",
"collectCoverage": true,
"moduleFileExtensions": [
"ts",
"js"
],
"globals": {
"ts-jest": {
"enableTsDiagnostics": true
}
}
}
}