forked from stimulusreflex/cable_ready
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.16 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
{
"name": "cable_ready",
"version": "5.0.0-pre2",
"description": "CableReady helps you create great real-time user experiences by making it simple to trigger client-side DOM changes from server-side Ruby.",
"keywords": [
"ruby",
"rails",
"websockets",
"actioncable",
"cable",
"ssr",
"stimulus_reflex",
"client-side",
"dom"
],
"homepage": "https://cableready.stimulusreflex.com/",
"bugs": {
"url": "https://github.com/stimulusreflex/cable_ready/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com:stimulusreflex/cable_ready.git"
},
"license": "MIT",
"author": "Nathan Hopkins <[email protected]>",
"main": "./javascript/index.js",
"module": "./javascript/index.js",
"sideEffects": false,
"scripts": {
"lint": "yarn run prettier-standard:check",
"format": "yarn run prettier-standard:format",
"prettier-standard:check": "yarn run prettier-standard --check ./javascript/**/*.js",
"prettier-standard:format": "yarn run prettier-standard ./javascript/**/*.js"
},
"dependencies": {
"morphdom": "^2.6.1"
},
"devDependencies": {
"prettier-standard": "^16.1.0"
}
}