-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 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
{
"name": "life360-api.js",
"version": "0.3.1",
"description": "An unofficial client for the Life360 API.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"start": "tsc && node dist/index.js",
"test": "node ./test/index.js",
"lint": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MiGoller/life360-api.js.git"
},
"keywords": [
"Life360",
"GPS",
"Tracking",
"API"
],
"author": "MiGoller",
"license": "MIT",
"bugs": {
"url": "https://github.com/MiGoller/life360-api.js/issues"
},
"homepage": "https://github.com/MiGoller/life360-api.js#readme",
"devDependencies": {
"@types/node": "^14.18.21",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"dotenv": "^16.0.3",
"eslint": "^7.24.0",
"typescript": "^4.7.3"
},
"dependencies": {
"axios": "^0.27.2"
}
}