-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.48 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
{
"name": "harviewer-screenshot",
"description": "Take screenshots of HAR Viewer",
"version": "1.2.0",
"author": {
"name": "Paul Grime",
"email": "[email protected]",
"url": "https://github.com/gitgrimbo"
},
"bin": "./bin/harviewer-screenshot.js",
"files": [
"bin",
"lib"
],
"bugs": {
"url": "https://github.com/gitgrimbo/harviewer-screenshot/issues"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"file-url": "^2.0.2",
"get-stdin": "^6.0.0",
"kcors": "^1.2.1",
"koa": "^1.2.4",
"koa-send": "^3.2.0",
"puppeteer": "^1.5.0",
"yargs": "^5.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"cpx": "^1.5.0",
"eslint": "^5.0.1",
"eslint-config-google": "^0.9.1",
"mocha": "^5.2.0",
"rimraf": "^2.6.2"
},
"engines": {
"node": ">=6"
},
"homepage": "https://github.com/gitgrimbo/harviewer-screenshot#readme",
"keywords": [
"har",
"harviewer",
"screenshot",
"viewer"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gitgrimbo/harviewer-screenshot.git"
},
"scripts": {
"build": "rimraf ./lib && cpx ./src/evaluate-on-browser.js ./lib/ && babel src -d lib",
"lint": "eslint src",
"test": "./node_modules/.bin/mocha --recursive ./src/**/*.test.js"
}
}