-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
82 lines (82 loc) · 2.34 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
{
"name": "@metarhia/jstp",
"version": "3.0.0-pre",
"author": "Timur Shemsedinov <[email protected]>",
"description": "JavaScript Transfer Protocol for Impress Application Server",
"license": "MIT",
"keywords": [
"api",
"rpc",
"impress",
"metarhia",
"javascript",
"json"
],
"repository": {
"type": "git",
"url": "https://github.com/metarhia/jstp"
},
"directories": {
"man": "./man"
},
"bugs": {
"url": "https://github.com/metarhia/jstp/issues",
"email": "[email protected]"
},
"main": "./jstp.js",
"bin": {
"jstp-cli": "./bin/cli.js"
},
"browser": {
"./jstp.js": "./dist/jstp.umd.js",
"./lib/server.js": false,
"./lib/net.js": false,
"./lib/tls.js": false,
"./lib/socket.js": false,
"./lib/wss.js": false,
"./lib/ws.js": "./lib/ws-browser.js",
"./lib/simple-auth-policy.js": false,
"./lib/simple-session-storage-provider.js": false,
"./lib/deprecate.js": "./lib/deprecate-browser.js"
},
"dependencies": {
"mdsf": "^1.1.1",
"semver": "^6.0.0",
"uuid": "^3.2.1",
"websocket": "^1.0.28",
"yargs": "^12.0.5"
},
"devDependencies": {
"@babel/core": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/runtime": "^7.4.2",
"babel-loader": "^8.0.5",
"eslint": "^5.15.3",
"eslint-config-metarhia": "^7.0.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^3.0.1",
"prettier": "^1.16.4",
"remark-cli": "^6.0.1",
"remark-preset-lint-metarhia": "^1.0.4",
"remark-validate-links": "^8.0.2",
"tap": "^12.6.1",
"webpack": "^4.29.6",
"webpack-command": "^0.4.2"
},
"scripts": {
"test": "npm run lint && npm run test-node && npm run test-integration",
"test-node": "node tools/run-node-tests.js",
"test-integration": "node test/integration/run.js",
"test-coverage": "nyc npm run test-node",
"lint": "eslint . && remark . && prettier -c \"**/*.js\" \"**/*.json\" \"**/*.md\" \".*rc\" \"**/*.yml\"",
"fmt": "prettier --write \"**/*.js\" \"**/*.json\" \"**/*.md\" \".*rc\" \"**/*.yml\"",
"build-browser": "webpack --progress",
"prepublish": "npm run -s build-browser"
},
"engines": {
"node": ">=6.0.0"
},
"readmeFilename": "README.md"
}