forked from samarmohan/react-text-loop-next
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
100 lines (100 loc) · 2.96 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "react-text-loop-next",
"version": "0.0.3",
"description": "Create an animated loop of a list of text for your headings",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm-run-all build:*",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:types": "tsc --declaration --emitDeclarationOnly --declarationDir dist/types",
"prebuild": "rimraf dist",
"start:examples": "parcel examples/index.html -d examples/dist --cache-dir examples/cache --open",
"lint": "npm-run-all lint:*",
"lint:src": "eslint . --fix",
"lint:types": "tsc --noEmit",
"prettier": "prettier --write .",
"prepublishOnly": "yarn run test && yarn run prettier && yarn run lint && yarn run build",
"quality": "yarn run test && yarn run prettier && yarn run lint",
"test": "jest",
"test:coverage": "jest --coverage",
"prepare": "husky install",
"commit:signed": "git add -A && cz -S",
"commit": "git add -A && cz"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/samarmohan/react-text-loop-next.git"
},
"files": [
"dist"
],
"keywords": [
"react",
"component",
"text",
"animation",
"loop",
"cycle",
"react",
"motion"
],
"author": "Samar Mohan <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/samarmohan/react-text-loop-next/issues"
},
"homepage": "https://github.com/samarmohan/react-text-loop-next#readme",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.0",
"@types/node": "^18.11.8",
"@types/react": "^18.0.24",
"@types/react-dom": "^18.0.8",
"@types/react-motion": "^0.0.33",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"jest": "^29.2.2",
"jest-environment-jsdom": "^29.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"peerDependencies": {
"react": "^17 || ^18",
"react-dom": "^17 || ^18"
},
"dependencies": {
"cxs": "^6.2.0",
"react-motion": "^0.5.2"
},
"packageManager": "[email protected]"
}