-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.67 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@onreadydesa/vtex-node-sdk",
"version": "1.16.0-beta",
"description": "VTEX Node SDK, built 100% with Typescript and 0 dependencies!",
"author": "Onready",
"private": false,
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"url": "https://github.com/onready/vtex-node-sdk.git",
"type": "git"
},
"homepage": "https://github.com/onready/vtex-node-sdk",
"bugs": {
"url": "https://github.com/onready/vtex-node-sdk/issues",
"email": "[email protected]"
},
"keywords": [
"vtex",
"vtex-sdk",
"vtex-node-sdk",
"onready",
"vtex-api",
"sdk-node-vtex",
"typescript",
"api-vtex",
"sdk-vtex",
"node",
"vtex-node",
"node-vtex",
"node-vtex-sdk"
],
"scripts": {
"build": "rimraf dist && tsc",
"test": "jest",
"lint": "eslint \"./src/**/*.ts\" && eslint \"./test/**/*.ts\"",
"prepublishOnly": "yarn lint && yarn test && yarn build"
},
"devDependencies": {
"@babel/core": "7.10.5",
"@babel/preset-env": "7.10.4",
"@babel/preset-typescript": "7.10.4",
"@types/jest": "26.0.5",
"@types/node": "14.0.23",
"@typescript-eslint/eslint-plugin": "3.6.1",
"@typescript-eslint/parser": "3.6.1",
"babel-jest": "26.1.0",
"eslint": "7.5.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "23.18.0",
"eslint-plugin-prettier": "3.1.4",
"jest": "26.1.0",
"nock": "13.0.2",
"prettier": "2.0.5",
"rimraf": "3.0.2",
"ts-jest": "26.1.3",
"typescript": "3.9.7"
},
"engines": {
"node": ">=8.0.0"
}
}