-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.26 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
{
"name": "@minthesize/cubism",
"version": "0.2.0",
"description": "Lightweight Resource-Based Presence Solution with CableReady.",
"main": "./dist/cubism.umd.min.js",
"module": "./dist/cubism.min.js",
"files": [
"dist/*",
"javascript/*"
],
"scripts": {
"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/julianrubisch/cubism.git"
},
"keywords": [
"presence"
],
"author": "Julian Rubisch",
"license": "MIT",
"bugs": {
"url": "https://github.com/julianrubisch/cubism/issues"
},
"homepage": "https://github.com/julianrubisch/cubism#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"prettier-standard": "^16.4.1",
"rollup": "^2.70.1",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"cable_ready": "^5.0.0"
}
}