forked from ccnokes/react-toggle-display
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.03 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.03 KB
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
{
"name": "react-toggle-display",
"version": "2.2.1",
"description": "Hide/show a component's children",
"repository": {
"type": "git",
"url": "https://github.com/ccnokes/react-toggle-display"
},
"main": "./dist/ToggleDisplay.js",
"scripts": {
"test": "babel-node ./__tests__/ToggleDisplay-test.js",
"build": "npm run clean && mkdir -p ./dist && babel ToggleDisplay.jsx --out-file dist/ToggleDisplay.js",
"clean": "rm -rf dist",
"prepublish": "npm run build"
},
"keywords": [
"react",
"reactjs",
"react-component",
"hide",
"show",
"toggle",
"component",
"functional-component"
],
"author": "Cameron Nokes",
"license": "MIT",
"devDependencies": {
"babel-cli": "6.1.18",
"babel-plugin-transform-es2015-modules-umd": "^6.12.0",
"babel-preset-es2015": "6.1.18",
"babel-preset-react": "6.1.18",
"babel-preset-stage-0": "6.1.18",
"cheerio": "0.19.0",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"tape": "4.2.2"
}
}