forked from serverless/typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.12 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
{
"name": "@serverless/typescript",
"version": "2.59.0",
"description": "Serverless typescript definitions",
"main": "index.d.ts",
"scripts": {
"build": "tsc",
"lint:fix": "eslint src --fix",
"watch": "tsc -w",
"test:lint": "eslint src",
"test:type": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/serverless/typescript.git"
},
"keywords": [
"serverless",
"sls",
"typescript"
],
"author": "Frédéric Barthelet",
"license": "ISC",
"bugs": {
"url": "https://github.com/serverless/typescript/issues"
},
"homepage": "https://github.com/serverless/typescript#readme",
"devDependencies": {
"@types/json-schema": "^7.0.6",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"ajv": "^7.0.3",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.0",
"json-schema-to-typescript": "^10.1.3",
"lodash": "^4.17.21",
"prettier": "^2.2.1",
"serverless": "*",
"typescript": "^4.0.5"
}
}