-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 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
71
{
"name": "react-user-journey",
"version": "1.0.0",
"description": "A library for tracking user journeys in React.",
"homepage": "https://github.com/EliseuSantos/react-user-journey",
"license": "MIT",
"bugs": {
"url": "https://github.com/EliseuSantos/react-user-journey/issues"
},
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/EliseuSantos/react-user-journey.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"commit": "cz",
"build": "webpack --mode production",
"watch": "webpack --mode development --watch",
"test": "jest",
"test:watch": "pnpm test --watch",
"test:coverage": "jest --coverage --colors --maxWorkers=2",
"publish": "npx semantic-release --no-ci"
},
"packageManager": "[email protected]",
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^11.0.2",
"@semantic-release/release-notes-generator": "^12.1.0",
"@testing-library/dom": "^9.3.4",
"@testing-library/react": "^12.1.5",
"@types/jest": "^27.5.2",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"babel-jest": "^27.0.6",
"babel-loader": "^8.2.2",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.0.11",
"jest": "^27.5.1",
"semantic-release": "^23.0.2",
"ts-jest": "^27.1.5",
"ts-loader": "^9.5.1",
"typescript": "^4.3.2",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0"
},
"keywords": [
"react",
"user journey",
"tracking",
"library"
],
"author": "Eliseu dos Santos da Silva",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}