-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 911 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
35
36
37
38
{
"name": "react-toggleview",
"version": "1.0.0",
"description": "Basic component to toggle display",
"main": "index.js",
"scripts": {
"build": "babel src/index.js -o index.js",
"prepublish": "npm run build",
"test": "echo \"no test\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/iddar/react-toggleview.git"
},
"keywords": [
"toggle",
"react",
"hide",
"show",
"component"
],
"author": "iddar olivares <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/iddar/react-toggleview/issues"
},
"homepage": "https://github.com/iddar/react-toggleview#readme",
"dependencies": {
"react": "^15.2.1",
"react-dom": "^15.2.1"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0"
}
}