-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.45 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.45 KB
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
{
"name": "@farfetch/blackout-client",
"version": "2.19.1",
"description": "Clients to connect to the Farfetch Platform Solutions' services",
"license": "MIT",
"main": "src/index.ts",
"type": "module",
"sideEffects": false,
"scripts": {
"build": "yarn build:transpile && yarn build:types",
"build:watch": "../../scripts/transpile.sh --skip-initial-build --watch --verbose",
"build:transpile": "../../scripts/transpile.sh",
"build:types": "tsc -p tsconfig.release.json",
"build:copy-package-json": "node ../../scripts/copy-package-json.js",
"clean": "rimraf dist tsconfig.release.tsbuildinfo",
"ci:types": "tsc -p tsconfig.ci.runtime.json",
"prepack": "yarn build:copy-package-json",
"dev:link": "yarn build && yarn build:copy-package-json && cd dist && yarn link",
"release:git": "yarn build && yarn build:copy-package-json && cd dist && npx gitpkg publish --registry"
},
"repository": {
"type": "git",
"url": "https://github.com/Farfetch/blackout.git"
},
"dependencies": {
"@types/json-patch": "^0.0.30",
"@types/json-schema": "^7.0.11",
"@types/proper-url-join": "2.1.1",
"crypto-es": "^2.1.0",
"proper-url-join": "^2.1.1"
},
"devDependencies": {
"axios": "1.6.8",
"lodash": "^4.17.21"
},
"peerDependencies": {
"axios": "1.6.8",
"lodash-es": "^4.17.21"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14",
"npm": ">=6.4.1"
}
}