-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.4 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
{
"name": "@lambda-lambda-lambda/cli",
"description": "Command-line tool to create a new L³ application.",
"version": "0.6.8",
"main": "index.js",
"types": "types.d.ts",
"scripts": {
"compile": "tsc -p ./",
"lint": "eslint src test --ext .js,.ts,.tsx",
"prepack": "npm run compile",
"test": "npm run compile && mocha --require test/mocha.env.js 'test/**/*.js'",
"watch": "tsc -watch -p ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lambda-lambda-lambda/cli.git"
},
"keywords": [
"lambda-lambda-lambda",
"typescript",
"command-line",
"tools"
],
"bugs": {
"url": "https://github.com/lambda-lambda-lambda/cli/issues"
},
"homepage": "https://github.com/lambda-lambda-lambda/cli#readme",
"author": "Marc S. Brooks <devel@mbrooks.info> (https://mbrooks.info)",
"license": "MIT",
"dependencies": {
"change-case": "^4.1.2",
"commander": "^10.0.1",
"find": "^0.3.0",
"node-fetch": "^2.7.0",
"template-file": "^6.0.1"
},
"devDependencies": {
"@lambda-lambda-lambda/types": "^0.0.3",
"@types/node": "^20.17.9",
"@types/node-fetch": "^2.6.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"chai": "^4.5.0",
"eslint": "^8.57.1",
"mocha": "^10.8.2",
"typescript": "^5.7.2"
},
"bin": {
"lambda-lambda-lambda": "./dist/cli.js"
}
}