-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.18 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
{
"name": "xplora-api.js",
"version": "0.1.3",
"description": "An unofficial client library for the Xplora API.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"prepare": "npm run build",
"common-test": "node ./test/common-tests.js",
"lint": "eslint . --ext .ts"
},
"repository": {
"type": "git",
"url": "https://github.com/MiGoller/xplora-api.js.git"
},
"keywords": [
"Xplora",
"Watch",
"Kids",
"API"
],
"author": "MiGoller",
"license": "MIT",
"bugs": {
"url": "https://github.com/MiGoller/xplora-api.js/issues"
},
"homepage": "https://github.com/MiGoller/xplora-api.js#readme",
"dependencies": {
"crypto-js": "^4.0.0",
"gql": "^1.1.2",
"graphql": "^15.8.0",
"graphql-request": "^3.7.0"
},
"devDependencies": {
"@types/crypto-js": "^4.0.1",
"@types/node": "^14.14.41",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"dotenv": "^10.0.0",
"eslint": "^7.24.0",
"tslint": "^6.1.3",
"typescript": "^4.2.4"
}
}