forked from afcapel/stimulus-autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.55 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
{
"name": "stimulus-autocomplete",
"version": "3.0.2",
"description": "StimulusJS autocomplete component",
"type": "module",
"main": "src/autocomplete.js",
"exports": "./src/autocomplete.js",
"source": "src/autocomplete.js",
"author": "Alberto Fernández-Capel <[email protected]>",
"license": "MIT",
"private": false,
"keywords": [
"stimulus",
"stimulusjs",
"controller",
"components"
],
"repository": {
"type": "git",
"url": "https://github.com/afcapel/stimulus-autocomplete.git"
},
"bugs": {
"url": "https://github.com/afcapel/stimulus-autocomplete/issues"
},
"homepage": "https://github.com/afcapel/stimulus-autocomplete",
"peerDependencies": {
"@hotwired/stimulus": "^3.0.0"
},
"devDependencies": {
"@hotwired/stimulus": "^3.0.0",
"cypress": "^9.2.0",
"http-server": "^14.0.0",
"start-server-and-test": "^1.14.0"
},
"scripts": {
"start": "http-server ./examples -p 3030",
"cy:run:chrome": "cypress run --browser chrome",
"cy:run:firefox": "cypress run --browser firefox",
"cy:run": "cypress run",
"cy:all": "yarn run cy:run:chrome && yarn run cy:run:firefox",
"test": "start-server-and-test start http://localhost:3030 cy:run",
"test:multibrowser": "start-server-and-test start http://localhost:3030 cy:all",
"netlify:deploy": "rm examples/stimulus-autocomplete.js && cp -f src/autocomplete.js examples/stimulus-autocomplete.js",
"postversion": "git push && git push --tags",
"release": "yarn test && yarn version && npm adduser && npm publish"
}
}