-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
61 lines (61 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
51
52
53
54
55
56
57
58
59
60
61
{
"name": "altogic",
"version": "2.3.9",
"description": "Javascript client for Altogic backend apps.",
"keywords": [
"javascript",
"typescript",
"altogic",
"backend"
],
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p tsconfig.json",
"buildumd": "webpack",
"run": "node ./dist/index.js",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build && npm run buildumd",
"preversion": "npm run lint",
"version": "npm run format && git add .",
"postversion": "git push && git push origin master",
"docs": "typedoc src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/altogic/altogic-js.git"
},
"author": "Altogic",
"license": "MIT",
"bugs": {
"url": "https://github.com/altogic/altogic-js/issues"
},
"homepage": "https://github.com/altogic/altogic-js",
"devDependencies": {
"@types/node": "^17.0.14",
"prettier": "^2.5.1",
"process": "^0.11.10",
"ts-loader": "^9.2.6",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.22.10",
"typedoc-plugin-missing-exports": "^0.22.6",
"typescript": "^4.5.4",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-remove-debug": "^0.1.0"
},
"dependencies": {
"cross-fetch": "^3.1.4",
"socket.io-client": "^4.5.1"
},
"jsdelivr": "dist/umd/altogic.js",
"unpkg": "dist/umd/altogic.js"
}