-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
42 lines (42 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
39
40
41
42
{
"name": "stimulus-multiselect",
"version": "3.0.2",
"description": "Multiselect component built on the back of stimulus and html select tag",
"type": "module",
"main": "src/multiselect.js",
"exports": "./src/multiselect.js",
"source": "src/multiselect.js",
"author": "Vernes Pendić <[email protected]>",
"license": "MIT",
"private": false,
"keywords": [
"stimulus",
"multiselect",
"controller",
"components"
],
"repository": {
"type": "git",
"url": "https://github.com/BakiVernes/stimulus-multiselect"
},
"bugs": {
"url": "https://github.com/BakiVernes/stimulus-multiselect/issues"
},
"homepage": "https://github.com/BakiVernes/stimulus-multiselect",
"peerDependencies": {
"@hotwired/stimulus": "^3.1.0"
},
"devDependencies": {
"@hotwired/stimulus": "^3.1.0",
"cypress": "^9.2.0",
"http-server": "^14.0.0",
"start-server-and-test": "^1.14.0"
},
"scripts": {
"start": "http-server ./examples -p 3300",
"cy:run": "cypress run",
"test": "start-server-and-test start http://localhost:3300 cy:run",
"postversion": "git push && git push --tags",
"release": "yarn test && yarn version && npm adduser && npm publish"
}
}