-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.59 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
53
54
55
56
57
58
59
60
61
62
{
"name": "ananse",
"version": "1.9.5",
"description": "Ananse is a lightweight NodeJs framework with batteries included for building efficient, scalable and maintainable USSD applications.",
"git": "https://github.com/ephrimlawrence/ananse",
"author": "Lawrence Ephrim",
"homepage": "https://ephrimlawrence.github.io/ananse",
"license": "MIT",
"keywords": [
"ussd",
"ussd builder",
"ussd menu",
"ussd route",
"nodejs",
"typescript",
"ananse",
"spider",
"rejoice"
],
"entrypoint": "src/index.js",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"tsc": "tsc",
"build": "tsc --project tsconfig.build.json",
"tsx": "tsx",
"dev": "tsx --watch --trace-warnings tests/test_app.ts",
"test": "tsx bin/test.ts",
"simulate": "tsx src/cli/simulator.ts",
"bundle": "npm run build && npm run prebuild && tsup",
"prebuild": "rimraf dist",
"format": "biome format --write ./src ./tests",
"biome": "biome"
},
"bin": {
"simulator": "dist/cli/simulator.js"
},
"peerDependencies": {
"express": "^4.19.2",
"mysql2": "^3.9.7",
"pg-promise": "^11.6.0",
"redis": "^4.6.13",
"@japa/runner": "3.1.4"
},
"devDependencies": {
"@biomejs/biome": "1.7.1",
"@japa/api-client": "^2.0.3",
"@japa/assert": "3.0.0",
"@japa/runner": "3.1.4",
"@types/express": "^4.17.21",
"@types/node": "^20.12.7",
"rimraf": "^5.0.5",
"tsup": "^8.0.2",
"tsx": "^4.7.2",
"typescript": "^5.4.5",
"arg": "^5.0.2"
}
}