-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.36 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
{
"name": "@kanety/stimulus-accordion",
"description": "A stimulus controller for simple accordion menu",
"version": "1.2.0",
"source": "src/index.js",
"main": "./dist/index.js",
"umd:main": "./dist/index.umd.js",
"module": "./dist/index.module.mjs",
"style": "./dist/index.css",
"author": "Yoshikazu Kaneta <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kanety/stimulus-accordion.git"
},
"keywords": [
"stimulus",
"accordion"
],
"scripts": {
"watch": "node_modules/microbundle/dist/cli.js watch --globals @hotwired/stimulus=Stimulus --no-compress",
"build": "node_modules/microbundle/dist/cli.js build --globals @hotwired/stimulus=Stimulus",
"test": "node_modules/jest/bin/jest.js",
"start": "http-server -c-1"
},
"amdName": "StimulusAccordion",
"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",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"microbundle": "^0.15.1",
"postcss": "^8.4.38",
"sass": "^1.77.6"
},
"peerDependencies": {
"@hotwired/stimulus": "^3.0.0"
}
}