-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.13 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.13 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@fonoster/fnauthz",
"version": "0.8.0",
"description": "Authorization module for Fonoster",
"author": "Pedro Sanders <psanders@fonoster.com>",
"homepage": "https://github.com/fonoster/fonoster#readme",
"license": "MIT",
"main": "dist/index",
"types": "dist/index",
"directories": {
"src": "src",
"test": "test"
},
"scripts": {
"start": ".scripts/start.sh",
"prebuild": "rimraf ./dist tsconfig.tsbuildinfo",
"build": "tsc -b tsconfig.json",
"clean": "rimraf ./dist node_modules tsconfig.tsbuildinfo",
"test": "cross-env LOGS_LEVEL=none NODE_ENV=dev mocha --timeout 30000 test/**/*.test.ts",
"prepare": "husky",
"format": "prettier --write .",
"lint": "eslint src"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@fonoster/authz": "^0.9.8",
"@fonoster/common": "^0.9.7",
"@fonoster/identity": "^0.9.8",
"@fonoster/logger": "^0.9.7",
"@influxdata/influxdb-client": "^1.35.0",
"nats": "^2.28.2",
"pb-util": "^1.0.3",
"stripe": "^17.5.0",
"typescript": "^5.7.2",
"zod": "^3.24.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fonoster/fonoster.git"
},
"bugs": {
"url": "https://github.com/fonoster/fonoster/issues"
},
"gitHead": "b3255c4512154c5bee506b234e966526f174cbec",
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.17.0",
"@types/chai": "^5.0.1",
"@types/chai-as-promised": "^8.0.1",
"@types/mocha": "^10.0.10",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^4.0.0",
"chai": "^5.1.2",
"chai-as-promised": "^8.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"globals": "^15.14.0",
"husky": "^9.1.7",
"mocha": "^11.0.1",
"nodemon": "^3.1.9",
"prettier": "3.4.2",
"rimraf": "^6.0.1",
"sinon": "^19.0.2",
"sinon-chai": "^4.0.0",
"tsx": "^4.19.2",
"typescript-eslint": "^8.18.2"
},
"nodemonConfig": {
"watch": [
"./src/**"
],
"ext": "ts",
"exec": "tsx",
"ignore": "**/*.d.ts"
}
}