-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
70 lines (70 loc) · 2.04 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
{
"name": "last-hit",
"version": "0.9.20",
"description": "last hit on enterprise web",
"main": "runtime/main/index.js",
"scripts": {
"build:renderer": "npm run build --prefix renderer",
"build": "npm run build:renderer && npm run compile",
"compile": "gulp clean && tsc",
"compile:all": "npm run build",
"update:dev": "yarn add last-hit-replayer@dev",
"install:renderer": "yarn install --prefix renderer",
"start": "npm run compile:all && electron .",
"pack": "npm run compile:all && electron-builder --dir",
"pack:windows": "npm run compile:all && electron-builder -w",
"pack:osx": "npm run compile:all && electron-builder -m",
"pack:all": "npm run compile:all && electron-builder -mw",
"coverage": "nyc report --reporter=html",
"publish:osx": "npm run compile:all && electron-builder -m --publish onTagOrDraft",
"publish:windows": "npm run compile:all && electron-builder -w --publish onTagOrDraft",
"publish:linux": "npm run compile:all && electron-builder -l --publish onTagOrDraft"
},
"repository": {
"type": "git",
"url": "git+https://github.com/last-hit-aab/last-hit.git"
},
"keywords": [
"test",
"web",
"automation"
],
"author": "last-hit-team",
"license": "MIT",
"bugs": {
"url": "https://github.com/last-hit-aab/last-hit/issues"
},
"homepage": "https://www.last-hit.com",
"devDependencies": {
"electron": "^7.1.1",
"electron-builder": "^22.1.0",
"gulp": "^4.0.2",
"nyc": "^14.1.1"
},
"dependencies": {
"@types/cssesc": "^3.0.0",
"@types/pino": "^5.8.13",
"@types/puppeteer": "^1.20.2",
"@types/uuid": "^3.4.6",
"cssesc": "^3.0.0",
"last-hit-replayer": "^0.10.9",
"pino": "^5.13.4",
"pino-pretty": "^3.2.1",
"puppeteer": "^2.0.0",
"typescript": "^3.7.2",
"uuid": "^3.3.3",
"watchr": "^4.1.0"
},
"build": {
"asar": true,
"asarUnpack": "./node_modules/puppeteer/.local-chromium/**/*",
"artifactName": "${productName}-${version}-${os}-${arch}.${ext}",
"files": [
"!extensions/*",
"!replayer/*",
"!types/*",
"!test-one-extension/*",
"!workspace-extension/*"
]
}
}