forked from anxsec/tiny-t6
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 697 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 697 Bytes
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
{
"name": "tiny-t6",
"version": "1.0.0",
"description": "A Demo implementation of t6",
"engines": {
"node": ">= 14.16 <17"
},
"devDependencies": {
"@types/node": "~14.14.45",
"@typescript-eslint/eslint-plugin": "~4.28.2",
"@typescript-eslint/parser": "~4.28.2",
"eslint": "~7.30.0",
"eslint-config-prettier": "~8.3.0",
"prettier": "~2.3.2",
"ts-node": "^10.2.1",
"tsutils": "~3.21.0",
"typescript": "~4.3.5"
},
"scripts": {
"start": "ts-node src/index.ts",
"lint": "eslint . --ext .ts,.tsx"
},
"license": "MIT",
"dependencies": {
"playwright": "^1.14.1",
"tslib": "~2.3.0"
},
"volta": {
"node": "14.16.1"
}
}