Last change
on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
1.4 KB
|
Line | |
---|
1 | {
|
---|
2 | "name": "engine.io-parser",
|
---|
3 | "description": "Parser for the client for the realtime Engine",
|
---|
4 | "license": "MIT",
|
---|
5 | "version": "4.0.3",
|
---|
6 | "main": "lib/index.js",
|
---|
7 | "homepage": "https://github.com/socketio/engine.io-parser",
|
---|
8 | "devDependencies": {
|
---|
9 | "@babel/core": "~7.9.6",
|
---|
10 | "@babel/preset-env": "~7.9.6",
|
---|
11 | "babel-eslint": "^10.0.3",
|
---|
12 | "babelify": "^10.0.0",
|
---|
13 | "benchmark": "^2.1.4",
|
---|
14 | "eslint": "^6.8.0",
|
---|
15 | "eslint-config-prettier": "^6.9.0",
|
---|
16 | "expect.js": "0.3.1",
|
---|
17 | "mocha": "^5.2.0",
|
---|
18 | "nyc": "~15.0.1",
|
---|
19 | "prettier": "^1.19.1",
|
---|
20 | "socket.io-browsers": "^1.0.4",
|
---|
21 | "zuul": "3.11.1",
|
---|
22 | "zuul-ngrok": "4.0.0"
|
---|
23 | },
|
---|
24 | "dependencies": {
|
---|
25 | "base64-arraybuffer": "0.1.4"
|
---|
26 | },
|
---|
27 | "scripts": {
|
---|
28 | "test": "npm run lint && npm run format:check && if test \"$BROWSERS\" = \"1\" ; then npm run test:browser; else npm run test:node; fi",
|
---|
29 | "test:node": "nyc mocha test/index.js",
|
---|
30 | "test:browser": "zuul test/index.js --no-coverage",
|
---|
31 | "format:check": "prettier --check 'lib/**/*.js' 'test/**/*.js'",
|
---|
32 | "format:fix": "prettier --write 'lib/**/*.js' 'test/**/*.js'",
|
---|
33 | "lint": "eslint 'lib/**/*.js' 'test/**/*.js'"
|
---|
34 | },
|
---|
35 | "repository": {
|
---|
36 | "type": "git",
|
---|
37 | "url": "git@github.com:socketio/engine.io-parser.git"
|
---|
38 | },
|
---|
39 | "files": [
|
---|
40 | "lib/"
|
---|
41 | ],
|
---|
42 | "browser": {
|
---|
43 | "./lib/encodePacket.js": "./lib/encodePacket.browser.js",
|
---|
44 | "./lib/decodePacket.js": "./lib/decodePacket.browser.js"
|
---|
45 | },
|
---|
46 | "engines": {
|
---|
47 | "node": ">=8.0.0"
|
---|
48 | }
|
---|
49 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.