forked from jcgertig/react-text-marquee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 858 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-text-marquee",
"description": "A <marquee> component for react.",
"version": "1.0.0",
"main": "lib/index.js",
"author": "jcgertig",
"repository": "jcgertig/react-text-marquee",
"license": "MIT",
"scripts": {
"compile": "babel src/ --out-dir lib",
"bundle": "babel src/ --out-file dist/react-text-marquee.js",
"prepublish": "npm run compile",
"test:watch": "jest --watch --coverage",
"test": "jest --coverage"
},
"peerDependencies": {
"react": "^15.0.1"
},
"devDependencies": {
"jest": "^19.0.2",
"babel-cli": "*",
"babel-plugin-transform-es2015-modules-umd": "^6.18.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0"
},
"dependencies": {
"prop-types": "^15.5.8"
},
"files": [
"lib/",
"dist/"
]
}