UNPKG

1.43 kBJSONView Raw
1{
2 "name": "@lambda-lambda-lambda/cli",
3 "description": "Command-line tool to create a new L³ application.",
4 "version": "0.6.6",
5 "main": "index.js",
6 "types": "types.d.ts",
7 "scripts": {
8 "compile": "tsc -p ./",
9 "lint": "eslint src test --ext .js,.ts,.tsx",
10 "prepack": "npm run compile",
11 "test": "npm run compile && mocha --require test/mocha.env.js 'test/**/*.js'",
12 "watch": "tsc -watch -p ./"
13 },
14 "repository": {
15 "type": "git",
16 "url": "git+https://github.com/lambda-lambda-lambda/cli.git"
17 },
18 "keywords": [
19 "lambda-lambda-lambda",
20 "typescript",
21 "command-line",
22 "tools"
23 ],
24 "bugs": {
25 "url": "https://github.com/lambda-lambda-lambda/cli/issues"
26 },
27 "homepage": "https://github.com/lambda-lambda-lambda/cli#readme",
28 "author": "Marc S. Brooks <devel@mbrooks.info> (https://mbrooks.info)",
29 "license": "MIT",
30 "dependencies": {
31 "change-case": "^4.1.2",
32 "commander": "^10.0.1",
33 "find": "^0.3.0",
34 "node-fetch": "^2.7.0",
35 "template-file": "^6.0.1"
36 },
37 "devDependencies": {
38 "@lambda-lambda-lambda/types": "^0.0.3",
39 "@types/node": "^20.12.7",
40 "@types/node-fetch": "^2.6.11",
41 "@typescript-eslint/eslint-plugin": "^6.21.0",
42 "@typescript-eslint/parser": "^6.21.0",
43 "chai": "^4.4.1",
44 "eslint": "^8.57.0",
45 "mocha": "^10.4.0",
46 "typescript": "^5.4.5"
47 },
48 "bin": {
49 "lambda-lambda-lambda": "./dist/cli.js"
50 }
51}