-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.7 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
{
"name": "@cocreate/node-autoscaler",
"version": "1.8.0",
"description": "A simple node-autoscaler component in vanilla javascript. Easily configured using HTML5 data-attributes and/or JavaScript API.",
"keywords": [
"node-autoscaler",
"cocreate",
"low-code-framework",
"no-code-framework",
"cocreatejs",
"cocreatejs-component",
"cocreate-framework",
"no-code",
"low-code",
"collaborative-framework",
"realtime",
"realtime-framework",
"collaboration",
"shared-editing",
"html5-framework",
"javascript-framework"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "npx webpack --config webpack.config.js --watch",
"build": "NODE_ENV=production npx webpack --config webpack.config.js",
"postinstall": "node -e \"const { execSync } = require('child_process'); try { execSync('coc --version', { stdio: 'ignore' }); } catch (error) { try { execSync('npm install -g @cocreate/cli', { stdio: 'inherit' }); console.log('Installed \"@cocreate/cli\" globally.'); } catch (error) { console.error('Failed to install \"@cocreate/cli\" globally:', error); } }\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/CoCreate-app/CoCreate-node-autoscaler.git"
},
"author": "CoCreate LLC",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/CoCreate-app/CoCreate-node-autoscaler/issues"
},
"homepage": "https://cocreate.app/docs/node-autoscaler",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"webpack": "^5.14.0",
"webpack-cli": "^4.3.1",
"webpack-log": "^3.0.1"
}
}