forked from Doko-Demo-Doa/material-tabs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.33 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
{
"name": "material-tabs",
"version": "0.0.8",
"description": "A simple React package that provides the Material Design tab component.",
"main": "lib",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "babel --presets es2015,react --plugins transform-es2015-destructuring,transform-object-rest-spread --watch src/ --out-dir lib/",
"prepublish": "babel --presets es2015,react --plugins transform-es2015-destructuring,transform-object-rest-spread src/ --out-dir lib/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oliverfencott/material-tabs.git"
},
"author": "Oliver Fencott <[email protected]> (http://fencott.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/oliverfencott/material-tabs/issues"
},
"keywords": [
"JavaScript",
"React",
"react-component",
"Material",
"Design",
"Tabs"
],
"homepage": "https://github.com/oliverfencott/material-tabs#readme",
"peerDependencies": {
"prop-types": "*",
"react": "*"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-es2015-destructuring": "^6.18.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"react": "*"
}
}