-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
108 lines (108 loc) · 3.5 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
98
99
100
101
102
103
104
105
106
107
108
{
"name": "ably",
"description": "Realtime client library for Ably, the realtime messaging service",
"version": "1.2.39",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ably/ably-js/issues",
"email": "[email protected]"
},
"main": "./build/ably-node.js",
"typings": "./ably.d.ts",
"react-native": {
"./build/ably-node.js": "./build/ably-reactnative.js"
},
"browser": {
"./build/ably-node.js": "./build/ably-commonjs.js"
},
"files": [
"build/**",
"ably.d.ts",
"callbacks.d.ts",
"callbacks.js",
"promises.d.ts",
"promises.js",
"resources/**"
],
"dependencies": {
"@ably/msgpack-js": "^0.4.0",
"got": "^11.8.5",
"ws": "^5.1"
},
"devDependencies": {
"@ably/vcdiff-decoder": "1.0.4",
"@types/crypto-js": "^4.0.1",
"@types/node": "^15.0.0",
"@types/request": "^2.48.7",
"@types/ws": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"async": "ably-forks/async#requirejs",
"aws-sdk": "^2.1075.0",
"chai": "^4.2.0",
"copy-webpack-plugin": "^11.0.0",
"cors": "~2.7",
"crypto-js": "ably-forks/crypto-js#crypto-lite",
"eslint": "^7.13.0",
"eslint-plugin-jsdoc": "^40.0.0",
"eslint-plugin-security": "^1.4.0",
"express": "^4.17.1",
"glob": "~4.4",
"google-closure-compiler": "^20180610.0.1",
"grunt": "^1.4.1",
"grunt-bump": "^0.3.1",
"grunt-cli": "~1.2.0",
"grunt-closure-tools": "^1.0.0",
"grunt-contrib-concat": "~0.5",
"grunt-shell": "~1.1",
"grunt-webpack": "^5.0.0",
"hexy": "~0.2",
"kexec": "ably-forks/node-kexec#update-for-node-12",
"minimist": "^1.2.5",
"mocha": "^8.1.3",
"playwright": "^1.10.0",
"prettier": "^2.5.1",
"requirejs": "~2.1",
"shelljs": "~0.8",
"source-map-explorer": "^2.5.2",
"ts-loader": "^9.4.2",
"tsconfig-paths-webpack-plugin": "^4.0.1",
"tslib": "^2.3.1",
"typedoc": "^0.23.8",
"typescript": "^4.6.4",
"webpack": "^5.79.0",
"webpack-cli": "^5.0.1"
},
"engines": {
"node": ">=5.10.x"
},
"repository": "ably/ably-js",
"jspm": {
"registry": "npm",
"directories": {
"lib": "browser/static"
},
"main": "ably"
},
"scripts": {
"grunt": "grunt",
"test": "grunt test",
"test:node": "grunt test:node",
"test:webserver": "grunt test:webserver",
"test:playwright": "node test/support/runPlaywrightTests.js",
"concat": "grunt concat",
"build": "grunt build:all",
"build:node": "grunt build:node",
"build:browser": "grunt build:browser",
"requirejs": "grunt requirejs",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"check-closure-compiler": "grunt check-closure-compiler",
"prepare": "npm run build",
"format": "prettier --write --ignore-path .gitignore src test ably.d.ts webpack.config.js Gruntfile.js scripts/cdn_deploy.js docs/chrome-mv3.md",
"format:check": "prettier --check --ignore-path .gitignore src test ably.d.ts webpack.config.js Gruntfile.js scripts/cdn_deploy.js",
"sourcemap": "source-map-explorer build/ably.min.js",
"sourcemap:noencryption": "source-map-explorer build/ably.noencryption.min.js",
"docs": "typedoc --entryPoints ably.d.ts --out docs/generated/default --readme docs/landing-pages/default.md && typedoc --entryPoints promises.d.ts --out docs/generated/promises --name \"ably (Promise-based)\" --readme docs/landing-pages/promises.md && cp docs/landing-pages/choose-library.html docs/generated/index.html"
}
}