-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
88 lines (88 loc) · 2.48 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
{
"name": "react-animated-text-content",
"version": "1.0.0",
"description": "Animate your jsx/html text using React component",
"main": "index.js",
"files": [
"dist",
"./index.js"
],
"scripts": {
"test": "jest",
"test:dev": "jest --watch",
"test:ci": "npm run test:jest",
"test:jest": "jest --coverage",
"clean": "rm -rf dist",
"build": "npm run clean && NODE_ENV=production rollup -c",
"postbuild": "rm -rf dist/helpers.d.ts dist/tests dist/styles",
"start": "rollup -c -w",
"prepare": "npm run build",
"format": "prettier src/** --write"
},
"keywords": [
"animation",
"animate",
"keyframes",
"react",
"transition",
"text",
"string"
],
"jest": {
"testEnvironment": "jsdom"
},
"author": "Damian Kalka (kalka@[email protected])",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kalkson/react-animated-text-content"
},
"types": "dist/index.d.ts",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@emotion/babel-plugin": "^11.3.0",
"@rollup/plugin-replace": "^3.0.0",
"@types/jest": "^27.0.3",
"@types/react": "^17.0.36",
"@types/react-dom": "^17.0.11",
"@types/styled-components": "^5.1.15",
"@types/uuid": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"babel-core": "^6.26.3",
"babel-plugin-styled-components": "^2.0.1",
"babel-runtime": "^6.26.0",
"eslint": "^8.3.0",
"eslint-config-airbnb": "^19.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.60.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-import-css": "^3.0.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-sass": "^1.2.9",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.1",
"tslib": "^2.3.1",
"typescript": "^4.5.2"
},
"peerDependencies": {
"react": ">=16.11.0 <=18.0.1",
"react-dom": ">=16.11.0 <=18.0.1"
},
"dependencies": {
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^12.1.2",
"styled-components": "^5.3.3",
"uuid": "^8.3.2"
}
}