forked from sargassum-world/stimulated
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.33 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
{
"name": "@sargassum-world/stimulated",
"version": "0.4.2",
"homepage": "https://github.com/sargassum-world/stimulated",
"author": "Ethan Li <lietk12@gmail.com> (https://ethanj.li)",
"description": "Reusable modest JS sprinkles & controllers for web apps",
"repository": {
"type": "git",
"url": "git+https://github.com/sargassum-world/stimulated.git"
},
"license": "Apache-2.0",
"keywords": [
"modest",
"modest-js",
"hotwired",
"stimulus"
],
"bugs": {
"url": "https://github.com/sargassum-world/stimulated/issues"
},
"scripts": {
"format": "prettier --write ./src/**/*.{js,html}",
"lint": "prettier --write ./src/**/*.{js,html} && eslint src/**/*.js",
"lint:fix": "prettier --write ./src/**/*.{js,html} && eslint --fix src/**/*.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"eslint": "^8.10.0",
"eslint-plugin-import": "^2.24.2",
"prettier": "^2.4.1"
},
"dependencies": {
"@hotwired/turbo": "^7.0.1",
"@rails/actioncable": "^6.1.5",
"async-mutex": "^0.3.2",
"stimulus": "2.0.0"
},
"main": "src/index.js",
"exports": {
"./package.json": "./package.json",
".": "./src/index.js",
"./util": "./src/util/index.js"
},
"files": [
"**/*.js",
"LICENSE",
"LICENSE.BlueOak",
"README.md"
]
}