-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
78 lines (78 loc) · 2 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "vtex-api",
"version": "1.14.3",
"description": "A collection of VTEX APIs methods",
"main": "lib/index.js",
"module": "esm/index.js",
"sideEffects": false,
"files": [
"lib/",
"esm/"
],
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"scripts": {
"commit": "git-cz",
"clear": "rimraf lib esm",
"build:cjs": "tsc -d",
"build:es": "tsc -m esNext --outDir esm",
"build": "yarn clear && yarn build:cjs && yarn build:es",
"start": "tsc -w -m esNext --outDir esm",
"lint:js": "eslint **/*{.js,.ts} --fix --color",
"lint": "yarn lint:js",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test": "jest",
"prepublish": "yarn build"
},
"repository": {
"type": "git",
"url": "https://github.com/zeindelf/vtex-api"
},
"homepage": "https://github.com/zeindelf/vtex-api#readme",
"bugs": {
"url": "https://github.com/zeindelf/vtex-api/issues"
},
"license": "MIT",
"author": {
"name": "Zeindelf",
"email": "[email protected]",
"homepage": "https://zeindelf.com"
},
"keywords": [
"vtex",
"api"
],
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/es6-promise": "^3.3.0",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.12.0",
"@typescript-eslint/parser": "^4.12.0",
"codecov": "^3.8.1",
"commitizen": "^4.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.17.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-promise": "^4.2.1",
"husky": "^4.3.7",
"jest": "^26.6.3",
"lint-staged": "10.5.3",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3",
"whatwg-fetch": "^3.5.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"engines": {
"node": ">=14.15.1",
"npm": ">=6.4.1"
}
}