forked from serverless/serverless-plugin-typescript
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.21 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
57
58
{
"name": "serverless-plugin-tsoa",
"version": "0.0.6",
"license": "MIT",
"main": "dist/src/index.js",
"files": [
"dist",
"package.json",
"README.md"
],
"scripts": {
"prepublish": "npm run build",
"precommit": "npm run test",
"build": "rimraf dist && tsc",
"pretest": "npm run lint",
"test": "jest",
"lint": "tslint -c tslint.json 'src/**/*.ts'"
},
"repository": {
"url": "https://github.com/fnolla/serverless-plugin-tsoa.git"
},
"keywords": [
"serverless",
"serverless plugin",
"typescript",
"aws lambda"
],
"devDependencies": {
"@types/fs-extra": "5.0.5",
"@types/jest": "24.0.12",
"@types/lodash": "4.14.123",
"@types/node": "12.6.2",
"jest": "24.5.0",
"mock-fs": "4.9.0",
"rimraf": "2.6.3",
"ts-jest": "24.0.2",
"tslint": "5.14.0",
"tsoa": "^3.2.1",
"typescript": "^3.9.7"
},
"dependencies": {
"fs-extra": "^7.0.1",
"globby": "^9.2.0",
"lodash": "^4.17.11"
},
"peerDependencies": {
"typescript": ">=2.2.2"
},
"jest": {
"preset": "ts-jest",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.ts$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}