-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 961 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 961 Bytes
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
{
"name": "@wishcore/wish-rpc",
"author": "André Kaustell <andre.kaustell@wishtech.fi>",
"description": "An RPC implementation for Node.js, initally developed for the Wish project.",
"version": "0.6.7",
"main": "dist/index.js",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+ssh://wish.cto.fi:/git/wish-rpc#master"
},
"scripts": {
"test": "mocha --exit -r ts-node/register test/**/*.spec.ts",
"test-only": "mocha --exit -r ts-node/register",
"coverage": "istanbul cover --hook-run-in-context _mocha -- -R spec",
"lint": "eslint . --ext .ts"
},
"devDependencies": {
"@types/expect": "24.3.0",
"@types/mocha": "8.0.3",
"@types/node": "14.14.6",
"@typescript-eslint/eslint-plugin": "4.6.1",
"@typescript-eslint/parser": "4.6.1",
"eslint": "7.13.0",
"expect": "26.6.2",
"mocha": "8.2.1",
"nyc": "15.1.0",
"ts-node": "9.1.1",
"typescript": "4.1.3"
}
}