-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.11 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.11 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "backendless-rt-client",
"version": "1.0.2",
"description": "Backendless RT Client for connect to Backendless RT Server",
"browser": "dist/backendless-rt-client.js",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"files": [
"dist",
"lib",
"es",
"src"
],
"scripts": {
"clean": "rimraf lib dist es",
"lint": "eslint src --fix",
"check": "npm run lint && npm run test",
"build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack",
"analyze": "cross-env BABEL_ENV=commonjs NODE_ENV=development ANALYZE=true webpack",
"prepare": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/Backendless/RT-Client"
},
"bugs": {
"url": "http://support.backendless.com",
"email": "info@backendless.com"
},
"keywords": [
"cloud",
"mobile",
"api",
"baas",
"socket",
"rt",
"real-time",
"backendless.com"
],
"author": "info@backendless.com",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.7",
"@babel/plugin-proposal-decorators": "^7.25.9",
"@babel/plugin-transform-class-properties": "^7.25.9",
"@babel/plugin-transform-object-assign": "^7.25.9",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.26.7",
"@babel/register": "^7.25.9",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.2.1",
"cross-env": "^10.1.0",
"eslint": "^9.19.0",
"rimraf": "^6.1.3",
"terser-webpack-plugin": "^5.3.11",
"webpack": "^5.97.1",
"webpack-bundle-analyzer": "^5.2.0",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"@babel/runtime": "^7.26.7",
"socket.io-client": "^4.8.1"
}
}