-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 2.26 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
{
"name": "interaction-recorder",
"version": "0.0.6",
"description": "record user interactions in the browser",
"main": "build/index.js",
"scripts": {
"prepare": "husky install",
"start": "rimraf build && rollup -c -w",
"start:dev": "rimraf build && cross-env DEVELOPMENT=true rollup -c -w",
"build": "rimraf build && rollup -c",
"build:dev": "rimraf build && cross-env DEVELOPMENT=true rollup -c",
"typings": "tsc -d --emitDeclarationOnly --declarationDir typings",
"prepublish": "npm run build && npm run typings",
"lint": "prettier --write src/* && eslint src --ext .ts",
"test:unit": "jest --testPathPattern=__tests__/units --passWithNoTests",
"test:web": "jest --testPathPattern=__tests__/web --preset=jest-puppeteer",
"test:web:debug": "jest --testPathPattern=__tests__/web --preset=jest-puppeteer --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webzard-io/interaction-recorder.git"
},
"author": "webzard.io",
"license": "MIT",
"bugs": {
"url": "https://github.com/webzard-io/interaction-recorder/issues"
},
"typings": "typings/index.d.ts",
"files": [
"package.json",
"README.md",
"LICENSE",
"build/*",
"typings/*"
],
"homepage": "https://github.com/webzard-io/interaction-recorder#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^19.0.0",
"@types/eventemitter2": "^4.1.0",
"@types/jest": "^26.0.23",
"@types/jest-environment-puppeteer": "^4.4.1",
"@types/puppeteer": "^5.4.3",
"@types/wicg-entries-api": "^2020.8.2",
"@typescript-eslint/eslint-plugin": "^4.27.0",
"@typescript-eslint/parser": "^4.27.0",
"cross-env": "^7.0.3",
"eslint": "^7.28.0",
"husky": "^6.0.0",
"jest": "^27.0.6",
"jest-extended": "^0.11.5",
"jest-puppeteer": "^5.0.4",
"prettier": "^2.3.1",
"puppeteer": "^10.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.51.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^27.0.4",
"typescript": "^4.3.2"
},
"dependencies": {
"eventemitter2": "^6.4.4",
"xstate": "^4.22.0"
}
}