-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.12 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.12 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
41
42
43
44
45
{
"name": "@digidockage/react-conditional-wrap",
"version": "1.0.4",
"description": "A simple React component for wrapping children based on a condition.",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"clean": "nwb clean-module && nwb clean-demo",
"build": "nwb build-react-component --copy-files",
"prepublishOnly": "npm run clean && npm run build",
"start": "nwb serve-react-demo",
"test": "nwb test-react",
"test:coverage": "nwb test-react --coverage",
"test:watch": "nwb test-react --server"
},
"peerDependencies": {
"react": "16.x"
},
"devDependencies": {
"@types/react": "^16.9.17",
"nwb": "^0.25.2",
"react": "^16.4.0",
"react-dom": "^16.4.0"
},
"author": {
"name": "Sgobbi Federico",
"email": "federico@sgobbi.it"
},
"homepage": "https://github.com/digidockage/react-conditional-wrap",
"license": "MIT",
"repository": "https://github.com/digidockage/react-conditional-wrap",
"keywords": [
"react",
"react-component",
"conditional",
"wrap",
"wrapper"
]
}