forked from srdjan/react-multistep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.22 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
{
"name": "react-multistep",
"version": "5.1.1",
"description": "Responsive ReactJS multistep form component",
"main": "index.umd.js",
"module": "index.esm.js",
"license": "MIT",
"author": {
"name": "@djidja8",
"email": "[email protected]",
"url": "https://github.com/srdjan"
},
"keywords": [
"react, reactjs, responsive, component"
],
"repository": {
"type": "git",
"url": "https://github.com/srdjan/react-multistep"
},
"homepage": "https://github.com/srdjan/react-multistep",
"bugs": {
"url": "https://github.com/srdjan/react-multistep/issues"
},
"dependencies": {
"goober": "2.0.10"
},
"devDependencies": {
"csstype": "3.0.5",
"esbuild": "0.8.21",
"react": "17.0.1"
},
"peerDependencies": {
"react": "17.0.1"
},
"scripts": {
"build": "esbuild react-multistep.js '--define:process.env.NODE_ENV=\"development\"' --external:'react' --bundle --format=cjs --loader:.js=jsx --outfile=index.tar",
"build:prod": "esbuild react-multistep.js '--define:process.env.NODE_ENV=\"production\"' --external:'react' --bundle --minify --format=cjs --loader:.js=jsx --outfile=index.js",
"pub:dry": "npm publish ./ --dry-run",
"pub": "npm publish ./"
}
}