-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.49 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.49 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
{
"name": "@ricado/api-client",
"version": "2.7.10",
"description": "RICADO Gen 4 API Client Library for NodeJS and Browsers",
"author": {
"name": "Ash Neilson"
},
"main": "./lib/index.js",
"module": "./src/index.js",
"types": "./lib/index.d.ts",
"files": [
"dist",
"lib",
"src",
"types"
],
"repository": {
"type": "git",
"url": "https://github.com/ricado-group/js-api-client.git"
},
"bugs": {
"url": "https://github.com/ricado-group/js-api-client/issues"
},
"license": "MIT",
"keywords": [
"ricado",
"gen4",
"api",
"client"
],
"scripts": {
"clean": "rimraf dist && rimraf lib && rimraf docs && rimraf types/*.d.ts && rimraf types/*/ && rimraf ./stats.json",
"build": "npm run generate-version-file && tsc && npm run babel && npm run dts-bundle && npm run webpack",
"docs": "jsdoc -c jsdoc.json",
"prepublishOnly": "npm run clean && npm run build && npm run types-lint",
"types-lint": "tsc && dtslint --localTs node_modules/typescript/lib types",
"generate-version-file": "genversion --semi --es6 src/PackageVersion.js",
"babel": "cross-env babel src --out-dir lib",
"dts-bundle": "cross-env dts-bundle --name @ricado/api-client --main ./types/index.d.ts --out ../lib/index.d.ts",
"webpack": "cross-env NODE_ENV=production webpack",
"analyze-webpack": "npm run generate-version-file && npm run babel && cross-env NODE_ENV=production webpack --profile --json > stats.json && webpack-bundle-analyzer ./stats.json"
},
"dependencies": {
"engine.io-client": "3.5.4",
"js-base64": "^3.7.2",
"node-fetch": "^2.6.6",
"socket.io-client": "^2.5.0",
"socket.io-parser": "3.3.5"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@types/node-fetch": "^2.5.11",
"@types/socket.io-client": "^1.4.36",
"cross-env": "^7.0.3",
"dts-bundle": "^0.7.3",
"dtslint": "^4.2.1",
"genversion": "^3.0.1",
"jsdoc": "^3.6.7",
"jsdoc-memberof-namespace": "^2.2.0",
"rimraf": "^3.0.2",
"tidy-jsdoc": "^1.4.0",
"typescript": "4.0",
"webpack": "^5.43.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.2"
}
}