-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 948 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
{
"name": "@vtex/vtexis-compatibility-layer",
"version": "1.6.3",
"description": "Compatibility layer between intelligent search and VTEX",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"watch": "tsc -w",
"build": "tsc",
"lint": "yarn eslint ./src --cache --ext ts --config .eslintrc",
"test": "jest"
},
"keywords": [
"vtex",
"intelligent",
"search",
"is"
],
"files": [
"lib"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vtex/vtexis-compatibility-layer"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.12.2",
"@types/ramda": "^0.27.40",
"@vtex/tsconfig": "^0.5.6",
"eslint": "^7.28.0",
"eslint-config-vtex": "^14.0.0",
"jest": "^27.0.4",
"prettier": "^2.2.1",
"ts-jest": "^27.0.3",
"typescript": "^4.2.4"
},
"dependencies": {
"ramda": "^0.27.1"
}
}