-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
85 lines (85 loc) · 2.67 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "vertical-timeline-component-react",
"version": "4.4.3",
"description": "A simple component for create a vertical timeline with React",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"files": [
"/lib"
],
"repository": "https://github.com/Proskynete/vertical-timeline-component-react",
"bugs": "https://github.com/Proskynete/vertical-timeline-component-react/issues",
"license": "MIT",
"scripts": {
"prebuild": "rimraf lib coverage *.tgz",
"build": "npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module commonjs --outDir lib/cjs",
"lint": "eslint . --ext .ts ./src",
"lint:fix": "eslint . --ext .ts ./src --fix",
"changelog": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s -r 1",
"test": "jest",
"test:update-snapshots": "npm run test -- --updateSnapshot",
"test:coverage": "npm run test -- --coverage",
"test:coveralls": "npm run test:coverage && coveralls < coverage/lcov.info",
"prepare": "npm run build && husky install",
"preversion": "npm run test",
"version": "npm run changelog && git add CHANGELOG.md"
},
"peer_dependencies": {
"react": "^17.0.2 || ^18.0.0-0",
"react-dom": "^17.0.2 || ^18.0.0-0"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-components": "^5.3.5"
},
"devDependencies": {
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.0.0",
"@types/node": "^18.7.14",
"@types/prettier": "^2.4.2",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@types/rimraf": "^3.0.2",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"conventional-changelog-cli": "^2.2.2",
"coveralls": "^3.1.1",
"eslint": "^8.23.0",
"eslint-config-airbnb-typescript": "^16.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^27.0.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-testing-library": "^5.6.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^29.0.1",
"lint-staged": "^13.1.0",
"markdownlint": "^0.27.0",
"markdownlint-cli": "^0.33.0",
"prettier": "^2.5.0",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"author": {
"name": "Eduardo Esteban Álvarez Castañeda",
"email": "soy@eduardoalvarez.dev",
"url": "https://eduardoalvarez.dev"
},
"keywords": [
"React",
"React.js",
"TypeScript",
"Vertical Timeline",
"Vertical Timeline Component React"
]
}