-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
47 lines (47 loc) · 1.36 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_reflex/futurism",
"version": "1.4.2",
"description": "Lazy-load Rails partials via CableReady",
"main": "./dist/futurism.umd.min.js",
"module": "./dist/futurism.min.js",
"files": [
"dist/*",
"javascript/*"
],
"scripts": {
"test": "yarn run mocha",
"lint": "yarn run prettier-standard:check",
"format": "yarn run prettier-standard:format",
"prettier-standard:check": "yarn run prettier-standard --check ./javascript/**/*.js rollup.config.js",
"prettier-standard:format": "yarn run prettier-standard ./javascript/**/*.js rollup.config.js",
"build": "yarn rollup -c",
"watch": "yarn rollup -wc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stimulusreflex/futurism.git"
},
"keywords": [
"cable_ready",
"lazy",
"loading"
],
"author": "Julian Rubisch <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stimulusreflex/futurism/issues"
},
"homepage": "https://github.com/stimulusreflex/futurism#readme",
"dependencies": {
"cable_ready": "^5.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"mocha": "^8.0.1",
"prettier-standard": "^16.4.1",
"rollup": "^3.29.5",
"rollup-plugin-terser": "^7.0.2"
}
}