-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.14 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
{
"name": "webmate-sdk-js",
"version": "0.30.0",
"description": "A JavaScript and TypeScript SDK for communicating with the webmate API",
"homepage": "https://github.com/webmate-io/webmate-sdk-js",
"keywords": [
"webmate"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "github.com/webmate-io/webmate-sdk-js.git"
},
"author": "Max Fellinger",
"contributors": [
"Timo Gühring"
],
"license": "Apache-2.0",
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register tests/**/*.ts",
"lint": "eslint . --ext .ts"
},
"dependencies": {
"axios": "^0.21.1",
"immutable": "^3.8.2",
"rxjs": "6.6.6",
"uuid": "8.3.1"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.32",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"chai": "^4.2.0",
"del": "^3.0.0",
"eslint": "^7.20.0",
"mocha": "^7.1.2",
"ts-node": "9.1.1",
"tslib": "2.1.0",
"tslint": "6.1.3",
"typescript": "4.2.3"
}
}