This repository has been archived by the owner on Sep 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
119 lines (119 loc) · 2.58 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "shopify-api-types",
"version": "0.0.5-alpha",
"description": "typings for Shopify Admin API",
"main": "./default/index.js",
"types": "./default/index.d.ts",
"exports": {
".": {
"require": "./default/index.js",
"import": "./default/index.mjs"
},
"./2021/1": {
"require": "./2020/01/index.js",
"import": "./2020/01/index.mjs"
}
},
"scripts": {
"prepublishOnly": "run-s clean test:lint build:node",
"postpublish": "run-s clean:node",
"build:ci": "tsc --noEmit --incremental false",
"build:node": "tsc && run-p esm:*",
"docs": "typedoc",
"esm:common": "gen-esm-wrapper ./common/index.js ./common/index.mjs",
"esm:default": "gen-esm-wrapper ./default/index.js ./default/index.mjs",
"esm:2020:01": "gen-esm-wrapper ./2020/01/index.js ./2020/01/index.mjs",
"lint": "eslint --fix --ext mjs,js,ts {20*,default,common}/**",
"test:lint": "eslint --ext mjs,js,ts {20*,default,common}/**",
"clean": "run-p clean:*",
"clean:node": "rimraf {20*,default,common}/**/*.{js,mjs,d.ts,map}"
},
"keywords": [
"shopify",
"shopify api",
"shopify admin",
"shopify admin api",
"types"
],
"author": "Carter Himmel <me@fyko.net>",
"license": "MIT",
"files": [
"v*/*",
"default/*",
"common/*",
"!**/*.ts",
"**/*.d.ts"
],
"engines": {
"node": ">=12"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-angular": "^11.0.0",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7.15.0",
"eslint-config-marine": "^7.2.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.1.3",
"gen-esm-wrapper": "^1.1.1",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"typedoc": "^0.22.5",
"typescript": "^4.4.3"
},
"repository": {
"type": "git",
"url": "https://github.com/fyko/shopify-api-types"
},
"bugs": {
"url": "https://github.com/fyko/shopify-api-types/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"commitlint": {
"extends": [
"@commitlint/config-angular"
],
"rules": {
"type-enum": [
2,
"always",
[
"chore",
"build",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test",
"types",
"wip"
]
],
"scope-case": [
1,
"always",
"pascal-case"
]
}
},
"volta": {
"node": "16.11.0",
"yarn": "1.22.15"
}
}