This repository was archived by the owner on Oct 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.39 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.39 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
{
"name": "@gameye/messaging-client",
"main": "./node/main.js",
"module": "./module/main.js",
"types": "./types/main.d.ts",
"scripts": {
"prepare": "npm run compile",
"compile": "tsc && tsc --project tsconfig.module.json",
"clean": "rm -rf node types module",
"test": "npm run spec-all",
"lint": "eslint \"src/**/*.ts\"",
"spec": "tape --require \"ts-node/register\"",
"spec-all": "npm run spec \"src/**/*.spec.ts\"",
"coverage": "nyc --reporter text-summary --reporter lcov npm test"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/Gameye/messaging-client-node.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Gameye/messaging-client-node/issues"
},
"homepage": "https://github.com/Gameye/messaging-client-node#readme",
"devDependencies": {
"@types/tape": "^4.13.0",
"@types/tape-promise": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^6.8.0",
"nyc": "^15.0.1",
"tape": "^5.0.0",
"tape-promise": "^4.0.0",
"ts-node": "^8.10.1",
"typescript": "^3.8.3"
},
"dependencies": {
"@types/http-errors": "^1.6.3",
"@types/node-fetch": "^2.5.7",
"abort-controller": "^3.0.0",
"flux-standard-action": "^2.1.1",
"http-errors": "^1.7.3",
"msecs": "^1.0.0",
"node-fetch": "^2.6.1"
}
}