-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
57 lines (57 loc) · 1.91 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": "sockpuppet-js",
"version": "0.6.0",
"description": "Websocket consumer to support django-sockpuppet / stimulus-reflex.",
"main": "./javascript/stimulus-websocket/index.js",
"repository": {
"type": "git",
"url": "https://github.com/jonathan-s/sockpuppet"
},
"keywords": [
"websockets",
"stimulus-reflex",
"django"
],
"author": "Jonathan Sundqvist <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jonathan-s/sockpuppet/issues"
},
"homepage": "https://github.com/jonathan-s/sockpuppet",
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/plugin-external-helpers": "^7.8.3",
"@babel/preset-env": "^7.6.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"cypress": "^4.4.0",
"eslint": "^6.8.0",
"eslint-plugin-cypress": "^2.11.2",
"eslint-plugin-import": "^2.7.0",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^7.0.2",
"stimulus": ">=1.1",
"stimulus_reflex": ">=3.4.1",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.11",
"cable_ready": ">= 4.4"
},
"dependencies": {
"reconnecting-websocket": "^4.4.0"
},
"files": [
"javascript/stimulus-websocket/index.js"
],
"scripts": {
"build": "rollup --config rollup.config.js",
"build:prod": "NODE_ENV=production webpack",
"build:test": "NODE_ENV=production webpack",
"build:watch": "NODE_ENV=development webpack --watch --info-verbosity verbose",
"build:analyze": "NODE_ENV=production webpack --env.analyze",
"lint": "eslint javascript",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
}
}