-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.76 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.76 KB
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
{
"name": "@konnect/chrome-extension-e2e",
"version": "1.0.0",
"description": "A Chrome extension for recording browser interaction and generating Puppeteer scripts",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development DEBUG=puppeteer-recorder:* webpack --watch",
"build": "cross-env NODE_ENV=production webpack",
"dist": "cross-env NODE_ENV=production webpack",
"test": "npm run test-jest",
"test-prod": "cross-env NODE_ENV=production npm run test-jest",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"test-jest": "node_modules/jest/bin/jest.js --runInBand lib/*/*/*.spec.ts src/*/*.spec.ts src/*/*/*.spec.ts src/*/*/*/*.spec.ts"
},
"pre-commit": [
"lint"
],
"keywords": [
"puppeteer",
"chrome",
"extension"
],
"author": "konnect <konnect@kimoce.com>",
"license": "UNLICENSED",
"dependencies": {
"@medv/finder": "^1.1.0",
"@pollyjs/adapter-fetch": "^4.3.0",
"@pollyjs/adapter-xhr": "^4.3.0",
"@pollyjs/core": "^4.3.0",
"@pollyjs/persister": "^4.3.0",
"@pollyjs/persister-local-storage": "^4.3.0",
"jszip": "^3.2.2",
"node-sass": "^4.13.1",
"vue": "^2.5.17",
"vue-clipboard2": "^0.2.1",
"vue-highlightjs": "^1.3.3"
},
"devDependencies": {
"@types/chrome": "0.0.122",
"@types/node": "^14.6.0",
"@vue/test-utils": "^1.0.0-beta.24",
"awesome-typescript-loader": "^5.2.1",
"copy-webpack-plugin": "^4.5.2",
"cross-env": "^5.2.0",
"css-loader": "^1.0.1",
"eslint": "^5.3.0",
"eslint-config-standard": "^12.0.0-alpha.0",
"eslint-plugin-html": "^4.0.5",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "^21.21.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"express": "^4.16.3",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^3.2.0",
"jest": "^26.6.3",
"jest-vue-preprocessor": "^1.4.0",
"lodash": "^4.17.10",
"mini-css-extract-plugin": "^0.10.0",
"node-sass": "^4.14.1",
"pre-commit": "^1.2.2",
"sass-loader": "^7.3.1",
"style-loader": "^0.22.1",
"superagent": "^3.8.3",
"ts-node": "^9.0.0",
"puppeteer": "^1.7.0",
"tslint": "^6.0.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-sonarts": "^1.9.0",
"typescript": "4.2.2",
"vue-loader": "^15.3.0",
"vue-style-loader": "^4.1.1",
"vue-template-compiler": "^2.5.17",
"webpack": "^4.44.1",
"webpack-chrome-extension-reloader": "^0.8.3",
"webpack-cli": "^4.0.0-beta.2",
"zip-folder": "^1.0.0",
"sinon-chrome": "3.0.1",
"@sinonjs/fake-timers": "^7.1.2",
"atob": "2.1.2",
"@types/jest": "^26.0.15",
"ts-jest": "26.5.2"
},
"standard": {
"globals": [
"chrome"
]
}
}