-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
42 lines (42 loc) · 1.08 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
{
"name": "@architect/plugin-typescript",
"version": "2.1.0",
"description": "TypeScript custom runtime + workflows integration for Architect",
"main": "src/index.js",
"scripts": {
"lint": "eslint . --fix",
"test:integration": "cross-env tape 'test/integration/**/*-test.js' | tap-arc",
"test": "npm run lint && npm run test:integration"
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "https://github.com/architect/plugin-typescript.git"
},
"author": "Ryan Block <[email protected]>",
"license": "Apache-2.0",
"files": [
"src/*"
],
"dependencies": {
"@types/aws-lambda": "^8.10.136",
"esbuild": "^0.20.2",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@architect/architect": "^11.0.6",
"@architect/eslint-config": "^2.1.2",
"@types/node": "^20.11.30",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"tap-arc": "^1.2.2",
"tape": "^5.7.5",
"tiny-json-http": "^7.5.1",
"typescript": "^5.4.3"
},
"eslintConfig": {
"extends": "@architect/eslint-config"
}
}