-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
104 lines (104 loc) · 3.75 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
101
102
103
104
{
"name": "react-text-loop",
"version": "2.3.0",
"description": "Create an animated loop of a list of text for your headings",
"main": "./lib/index.js",
"module": "es/index.js",
"sideEffects": false,
"scripts": {
"build": "run-p build:commonjs build:es build:umd build:umd:min build:ts build:ts-es",
"build:es": "babel src -d es --extensions .ts,.tsx",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src -d lib --extensions .ts,.tsx",
"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack src/index.ts -o dist/react-text-loop.js",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack src/index.ts -o dist/react-text-loop.min.js",
"build:ts": "tsc",
"build:ts-es": "tsc -m es6 --outDir es",
"clean": "rimraf lib dist es",
"dev": "yarn run clean && cross-env BABEL_ENV=commonjs babel src -d lib --watch",
"start": "parcel examples/index.html -d examples/dist --cache-dir examples/cache --open",
"lint": "eslint src/ --ext .js,.tsx,.ts",
"prepublishOnly": "yarn run test && yarn run lint && yarn run ts:check && yarn run clean && yarn run build",
"test": "jest",
"test:coverage": "jest --coverage",
"ts:check": "tsc -p tsconfig.json --allowJs false --noEmit --emitDeclarationOnly false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/braposo/react-text-loop.git"
},
"files": [
"es",
"dist",
"lib",
"src"
],
"keywords": [
"react",
"component",
"text",
"animation",
"loop",
"cycle",
"react",
"motion"
],
"author": {
"name": "Bernardo Raposo",
"email": "hi@bernardoraposo.com",
"url": "http://bernardoraposo.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/braposo/react-text-loop/issues"
},
"homepage": "https://github.com/braposo/react-text-loop#readme",
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.4",
"@babel/plugin-transform-modules-commonjs": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.4.0",
"@types/jest": "^24.0.23",
"@types/node": "^12.12.17",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"@types/react-motion": "^0.0.29",
"@typescript-eslint/eslint-plugin": "^2.11.0",
"@typescript-eslint/parser": "^2.11.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"cross-env": "^6.0.3",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.17.0",
"jest": "^24.9.0",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.4",
"prettier": "^1.19.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rimraf": "^3.0.0",
"source-map-loader": "^0.2.4",
"ts-jest": "^24.2.0",
"typescript": "^3.7.3",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"peerDependencies": {
"react": "^15.0.1 || ^16.0.1",
"react-dom": "^15.0.1 || ^16.0.1"
},
"dependencies": {
"cxs": "^6.2.0",
"react-fast-compare": "2.0.4",
"react-motion": "^0.5.2"
}
}