forked from stimulus-components/stimulus-auto-submit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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
42
43
44
45
46
47
48
49
50
51
52
{
"name": "stimulus-rails-autosave",
"version": "3.0.0",
"description": "A Stimulus controller to autosubmit Rails forms.",
"keywords": [
"stimulus",
"stimulusjs",
"stimulus controller",
"rails",
"rails-ujs",
"autosave",
"form"
],
"repository": "[email protected]:stimulus-components/stimulus-rails-autosave.git",
"bugs": {
"url": "https://github.com/stimulus-components/stimulus-rails-autosave/issues"
},
"author": "Guillaume Briday <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/stimulus-components/stimulus-rails-autosave",
"private": false,
"main": "dist/stimulus-rails-autosave.umd.js",
"module": "dist/stimulus-rails-autosave.es.js",
"scripts": {
"format": "prettier-standard '**/*.{ts,css,html}' --format",
"lint": "prettier-standard '**/*.{ts,css,html}' --lint",
"build": "tsc --noEmit && vite build",
"version": "yarn build",
"np": "np --no-2fa --no-test"
},
"devDependencies": {
"@babel/core": "7.14.3",
"@babel/plugin-syntax-class-properties": "7.12.13",
"@babel/preset-env": "^7.14.4",
"@babel/preset-typescript": "^7.13.0",
"@rails/ujs": "^6.0.3-7",
"@types/lodash": "^4.14.170",
"@types/rails__ujs": "^6.0.0",
"np": "^7.5.0",
"prettier-standard": "16.4.1",
"stimulus": "^2.0.0",
"typescript": "^4.3.2",
"vite": "^2.3.4"
},
"peerDependencies": {
"@rails/ujs": "^6.0.3-4",
"stimulus": "^2.0.0"
},
"dependencies": {
"lodash.debounce": "^4.0.8"
}
}