-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
97 lines (97 loc) · 3.1 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "backendless",
"version": "7.3.7",
"description": "Backendless JavaScript SDK for Node.js and the browser",
"browser": "dist/backendless.js",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"files": [
"dist",
"lib",
"es",
"src",
"backendless.d.ts"
],
"typings": "backendless.d.ts",
"scripts": {
"dev": "watch 'npm run build:commonjs' ./src",
"clean": "rimraf lib dist es",
"lint": "eslint src --fix",
"check": "npm run lint && npm run test",
"coverage": "nyc --reporter=html --reporter=text --cache=false npm run test:unit",
"test": "npm run test:tsc && npm run coverage",
"test:tsc": "tsc ./test/tsd.ts",
"test:unit": "cross-env NODE_ENV=test mocha --recursive test/unit/specs",
"test:e2e": "cross-env NODE_ENV=test mocha --require @babel/register test/e2e/specs/*",
"build": "npm run clean && npm run check && 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 --mode production",
"bannerize": "bannerize ./dist/*.js --banner=./banner.ejs",
"prepare": "npm run build && npm run bannerize"
},
"repository": {
"type": "git",
"url": "https://github.com/Backendless/JS-SDK"
},
"bugs": {
"url": "https://support.backendless.com",
"email": "info@backendless.com"
},
"keywords": [
"cloud",
"mobile",
"api",
"baas",
"backendless.com"
],
"author": "info@backendless.com",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.21.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.21.0",
"@babel/plugin-transform-object-assign": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.21.5",
"@babel/register": "^7.21.0",
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^14.17.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^9.1.2",
"babel-plugin-istanbul": "^6.0.0",
"babelify": "^10.0.0",
"backendless-console-sdk": "^2.21.1",
"bannerize": "^1.1.4",
"browserify": "^17.0.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"chai-spies": "^1.0.0",
"cross-env": "^7.0.3",
"eslint": "^7.28.0",
"express": "^4.17.1",
"global-jsdom": "^9.1.0",
"jsdom": "^22.1.0",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"request": "^2.88.2",
"rimraf": "^3.0.2",
"socket.io": "^2.3.0",
"terser-webpack-plugin": "^2.3.8",
"typescript": "^4.5.4",
"watch": "^1.0.2",
"watchify": "^4.0.0",
"webpack": "^5.81.0",
"webpack-cli": "^5.0.2"
},
"dependencies": {
"@babel/runtime": "^7.21.5",
"backendless-request": "^0.7.9",
"backendless-rt-client": "0.3.0"
}
}