-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 886 Bytes
/
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
{
"name": "lerna-to-lambda",
"version": "0.3.1",
"description": "Build standalone code packages from lerna monorepos",
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": {
"l2l": "build/cli.js"
},
"scripts": {
"clean": "rimraf build",
"compile": "tsc",
"build": "yarn clean && yarn compile",
"lint": "eslint src"
},
"repository": "https://github.com/lafiosca/lerna-to-lambda",
"author": "Joe Lafiosca",
"license": "MIT",
"private": false,
"dependencies": {
"resolve-package-path": "^3.1.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/node": "^14.14.16",
"@types/yargs": "^15.0.12",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"eslint": "^7.16.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-plugin-import": "^2.22.1",
"rimraf": "^3.0.2",
"typescript": "^4.1.3"
}
}