-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.52 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
{
"name": "docts-cli",
"version": "1.2.0",
"description": "A CLI library which enhances the development experience of DigitalOcean 'doctl serverless' when working with Typescript function projects",
"author": "Kwame Opare Asiedu",
"homepage": "https://github.com/kwameopareasiedu/docts#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kwameopareasiedu/docts"
},
"bugs": {
"url": "https://github.com/kwameopareasiedu/docts/issues"
},
"main": "bin/index.js",
"bin": {
"docts": "bin/index.js"
},
"type": "module",
"scripts": {
"build": "tsc",
"test": "ts-mocha -p tsconfig.json test/**/*.test.ts",
"dev": "tsc --watch",
"copy": "node bin/copy-template.js"
},
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.16",
"@types/ejs": "^3.1.5",
"@types/inquirer": "^9.0.7",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.1",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"chai": "^5.1.1",
"eslint": "8.57.0",
"mocha": "^10.4.0",
"prettier": "3.3.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.4.5"
},
"dependencies": {
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"commander": "^12.1.0",
"ejs": "^3.1.10",
"inquirer": "9.2.23",
"rollup": "^4.18.0",
"yaml": "^2.4.3"
},
"engines": {
"node": "^18 || ^20"
}
}