-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.39 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
50
51
52
{
"name": "@allbin/viu-api-client",
"version": "0.50.0",
"description": "API Client for Viu API",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prebuild": "npm run lint",
"build": "rm -rf lib && tsc",
"test": "echo \"Error: no test specified\" && exit 0",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts --fix src",
"prepublishOnly": "npm run build && npm run test"
},
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/allbin/viu-api-client.git"
},
"author": "",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/allbin/viu-api-client/issues"
},
"homepage": "https://github.com/allbin/viu-api-client#readme",
"devDependencies": {
"@allbin/eslint-config": "^0.0.11",
"@types/jsonwebtoken": "^9.0.1",
"@types/luxon": "^3.2.0",
"@types/node": "^17.0.29",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
},
"dependencies": {
"axios": "^1.3.3",
"jsonwebtoken": "^9.0.0",
"luxon": "^3.2.1",
"uuid": "^9.0.1"
},
"peerDependencies": {
"@allbin/viu-types": ">=0.53.0"
}
}