-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.25 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
{
"name": "bunzz",
"version": "0.1.5",
"description": "",
"exports": {
".": "./dist/index.js"
},
"bin": {
"bunzz": "./dist/index.js"
},
"scripts": {
"build": "npx tsc",
"dev": "npm run build && node dist/index.js",
"dev-cli": "npm run build && npm link",
"prepare": "npm run build",
"test": "jest"
},
"keywords": [],
"author": "Bunzz Pte. Ltd.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lastrust/bunzz-cli.git"
},
"homepage": "https://github.com/lastrust/bunzz-cli#readme",
"dependencies": {
"@types/jest": "^29.5.5",
"commander": "^11.0.0",
"dotenv": "^16.4.1",
"fs-extra": "^11.2.0",
"graphql": "^16.7.1",
"graphql-request": "^6.1.0",
"inquirer": "^9.2.12",
"jsdom": "^22.1.0",
"jsonfile": "^6.1.0",
"open": "^9.1.0",
"readline": "^1.3.0",
"readline-sync": "^1.4.10",
"ts-jest": "^29.1.1",
"vm": "^0.1.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.3",
"@types/jsdom": "^21.1.1",
"@types/jsonfile": "^6.1.1",
"@types/node": "^20.3.1",
"@types/readline-sync": "^1.4.4",
"jest": "^29.7.0",
"typescript": "^5.1.3"
},
"type": "module",
"engines": {
"node": ">=16.0.0"
}
}