forked from jasonslyvia/react-marquee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 870 Bytes
/
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
{
"name": "react-marquee",
"version": "1.0.0",
"description": "A <marquee> component for React",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./node_modules/.bin/babel src/ --out-dir lib/"
},
"repository": {
"type": "git",
"url": "git@github.com:jasonslyvia/react-marquee.git"
},
"keywords": [
"react",
"marquee",
"component"
],
"author": "jasonslyvia <jasonslyvia@gmail.com> (http://undefinedblog.com/)",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0"
},
"peerDependencies": {
"react": "~0.14.0 || ~15.0.0 || ~16.0.0",
"react-dom": "~0.14.0 || ~15.0.0 || ~16.0.0"
},
"dependencies": {
"prop-types": "*"
}
}