-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 895 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
{
"name": "stimulus-form-progress-bar",
"amdName": "StimulusFormProgressBar",
"version": "1.0.0",
"description": "A Stimulusjs controller to help with displaying progress when a user is filling out forms",
"main": "dist/stimulus-form-progress-bar.js",
"umd:main": "dist/stimulus-form-progress-bar.umd.js",
"module": "dist/stimulus-form-progress-bar.m.js",
"esmodule": "dist/stimulus-form-progress-bar.modern.js",
"repository": {
"url": "https://github.com/williamkennedy/stimulus-form-progress-bar",
"type": "git"
},
"author": "William Kennedy",
"license": "MIT",
"private": false,
"devDependencies": {
"microbundle": "^0.13.3"
},
"peerDependencies": {
"stimulus": "^2.0.0"
},
"dependencies": {
"stimulus": "^2.0.0"
},
"scripts": {
"build": "microbundle --globals @hotwired/stimulus=Stimulus",
"dev": "microbundle watch"
}
}