-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 739 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 739 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
32
{
"name": "turtle-gambit",
"version": "1.0.0",
"main": "./lib/index.js",
"license": "MIT",
"dependencies": {
"@types/carlo": "^0.9.1",
"@types/node-json-db": "^0.9.3",
"@types/ws": "^7.4.0",
"carlo": "^0.9.46",
"ngrok": "^3.3.0",
"node-json-db": "^1.1.0",
"p-queue": "^6.6.2",
"patch-package": "^6.2.2",
"postinstall-postinstall": "^2.1.0",
"puppeteer-core": "^5.5.0",
"tslint": "^6.1.3",
"typescript": "^4.1.2",
"ws": "^7.4.0"
},
"files": [
"./bin/*",
"./lib/*"
],
"typings": "./lib/index.d.ts",
"scripts": {
"postinstall": "patch-package",
"dev": "tsc && node lib/index.js",
"build": "tsc",
"lint": "tslint -c tslint.json src/**/*.ts"
}
}