-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
51 lines (51 loc) · 1.38 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
{
"name": "react-rotating-text",
"version": "1.4.1",
"description": "A simple react component to display an array of words/sentences with a typewriter effect.",
"main": "lib/ReactRotatingText.js",
"author": "Adrian Li",
"homepage": "https://github.com/adrianmc/react-rotating-text",
"repository": {
"type": "git",
"url": "https://github.com/adrianmc/react-rotating-text.git"
},
"bugs": {
"url": "https://github.com/adrianmc/react-rotating-text/issues"
},
"license": "MIT",
"dependencies": {
"classnames": "^2.1.2",
"lodash.toarray": "^4.4.0",
"prop-types": "^15.5.10"
},
"devDependencies": {
"babel-eslint": "^4.1.3",
"escope": "^3.6.0",
"eslint": "^5.15.3",
"eslint-plugin-react": "^3.5.1",
"estraverse-fb": "^1.3.2",
"gulp": "^3.9.0",
"react-component-gulp-tasks": "^0.7.6"
},
"peerDependencies": {
"react": ">= 15",
"react-dom": ">= 15"
},
"browserify-shim": {
"react": "global:React"
},
"scripts": {
"build": "gulp clean && NODE_ENV=production gulp build",
"examples": "gulp dev:server",
"lint": "eslint ./; true",
"publish:site": "NODE_ENV=production gulp publish:examples",
"release": "NODE_ENV=production gulp release",
"start": "gulp dev",
"test": "echo \"no tests yet\" && exit 0",
"watch": "gulp watch:lib"
},
"keywords": [
"react",
"react-component"
]
}