-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 930 Bytes
/
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
{
"name": "@letarette/client",
"version": "0.1.6",
"repository": {
"type": "git",
"url": "https://github.com/erkkah/letarette.js"
},
"publishConfig": {
"access": "public"
},
"description": "Letarette javascript / typescript client",
"keywords": [
"letarette",
"typescript",
"search",
"client"
],
"author": "Erik Agsjö",
"license": "ISC",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc",
"prepack": "rm -rf lib && tsc",
"lint": "tslint -p tsconfig.json"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/node": "^16.7.10",
"jest": "^26.4.2",
"minimist": ">=1.2.2",
"ts-jest": "^26.3.0",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"typescript": "^4.4.2"
},
"dependencies": {
"ts-nats": "^1.2.15"
}
}