-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.21 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
{
"name": "@kanety/stimulus-static-actions",
"description": "A stimulus extension to define actions in controller",
"version": "1.1.0",
"source": "src/index.js",
"main": "./dist/index.js",
"umd:main": "./dist/index.umd.js",
"module": "./dist/index.module.mjs",
"author": "Yoshikazu Kaneta <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kanety/stimulus-static-actions.git"
},
"keywords": [
"stimulus",
"action"
],
"scripts": {
"watch": "node_modules/microbundle/dist/cli.js watch --globals @hotwired/stimulus=Stimulus",
"build": "node_modules/microbundle/dist/cli.js build --globals @hotwired/stimulus=Stimulus",
"test": "node_modules/jest/bin/jest.js",
"start": "http-server -c-1"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/plugin-transform-class-properties": "^7.24.7",
"@babel/plugin-transform-private-methods": "^7.24.7",
"@babel/plugin-transform-private-property-in-object": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"microbundle": "^0.15.1"
},
"peerDependencies": {
"@hotwired/stimulus": "^3.0.0"
}
}