forked from stimulusreflex/stimulus_reflex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.57 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
51
52
53
54
55
56
57
{
"name": "stimulus_reflex",
"version": "3.5.0-pre1",
"description": "Build reactive applications with the Rails tooling you already know and love.",
"keywords": [
"ruby",
"rails",
"websockets",
"actioncable",
"turbolinks",
"reactive",
"cable",
"ujs",
"ssr",
"stimulus",
"reflex",
"stimulus_reflex",
"dom",
"morphdom"
],
"homepage": "https://docs.stimulusreflex.com/",
"bugs": {
"url": "https://github.com/stimulusreflex/stimulus_reflex/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com:stimulusreflex/stimulus_reflex.git"
},
"license": "MIT",
"author": "Nathan Hopkins <[email protected]>",
"main": "./javascript/stimulus_reflex.js",
"module": "./javascript/stimulus_reflex.js",
"scripts": {
"prettier-standard:check": "yarn run prettier-standard --check ./javascript/*.js ./javascript/**/*.js",
"prettier-standard:format": "yarn run prettier-standard ./javascript/*.js ./javascript/**/*.js",
"test": "yarn run mocha --require @babel/register --require jsdom-global/register --require esm ./javascript/test"
},
"peerDependencies": {
"stimulus": ">= 1.1"
},
"dependencies": {
"@rails/actioncable": ">= 6.0",
"cable_ready": "5.0.0-pre1"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/preset-env": "^7.6.2",
"@babel/register": "^7.6.2",
"assert": "^2.0.0",
"esm": "^3.2.25",
"jsdom": "^16.0.1",
"jsdom-global": "^3.0.2",
"mocha": "^8.0.1",
"prettier-standard": "^16.1.0",
"stimulus": ">= 1.1"
}
}